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