2 instantiations of TypedConstant
System.Core (2)
Microsoft\Scripting\Compiler\BoundConstants.cs (2)
103Helpers.IncrementCount(new TypedConstant(value, type), _references); 117if (_cache.TryGetValue(new TypedConstant(value, type), out local)) {
8 references to TypedConstant
System.Core (8)
Microsoft\Scripting\Compiler\BoundConstants.cs (8)
45private struct TypedConstant : IEquatable<TypedConstant> { 57public bool Equals(TypedConstant other) { 62return (obj is TypedConstant) && Equals((TypedConstant)obj); 79private readonly Dictionary<TypedConstant, int> _references = new Dictionary<TypedConstant, int>(); 84private readonly Dictionary<TypedConstant, LocalBuilder> _cache = new Dictionary<TypedConstant, LocalBuilder>();