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