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