2 instantiations of JSONNull
Microsoft.VisualStudio.TestPlatform.Common (2)
Utilities\SimpleJSON.cs (2)
1192
private static readonly JSONNull StaticInstance =
new
();
1196
return ReuseSameInstance ? StaticInstance : new
JSONNull
();
13 references to JSONNull
Microsoft.VisualStudio.TestPlatform.Common (13)
Utilities\SimpleJSON.cs (13)
370
return (s == null) ? (JSONNode)
JSONNull
.CreateOrGet() : new JSONString(s);
440
bool aIsNull = a is
JSONNull
or null or JSONLazyCreator;
441
bool bIsNull = b is
JSONNull
or null or JSONLazyCreator;
529
return
JSONNull
.CreateOrGet();
739
value =
JSONNull
.CreateOrGet();
753
value =
JSONNull
.CreateOrGet();
766
aItem =
JSONNull
.CreateOrGet();
864
value =
JSONNull
.CreateOrGet();
878
value =
JSONNull
.CreateOrGet();
894
aItem =
JSONNull
.CreateOrGet();
1192
private static readonly
JSONNull
StaticInstance = new();
1194
public static
JSONNull
CreateOrGet()
1222
return object.ReferenceEquals(this, obj) || obj is
JSONNull
;