5 instantiations of JSONLazyCreator
Microsoft.VisualStudio.TestPlatform.Common (5)
Utilities\SimpleJSON.cs (5)
734return aIndex < 0 || aIndex >= _list.Count ? new JSONLazyCreator(this) : _list[aIndex]; 749get { return new JSONLazyCreator(this); } 859return _dict.TryGetValue(aKey, out var value) ? value : new JSONLazyCreator(this, aKey); 1267get { return new JSONLazyCreator(this); } 1273get { return new JSONLazyCreator(this, aKey); }
4 references to JSONLazyCreator
Microsoft.VisualStudio.TestPlatform.Common (4)
Utilities\SimpleJSON.cs (4)
440bool aIsNull = a is JSONNull or null or JSONLazyCreator; 441bool bIsNull = b is JSONNull or null or JSONLazyCreator; 1287public static bool operator ==(JSONLazyCreator a, object b) 1292public static bool operator !=(JSONLazyCreator a, object b)