2 instantiations of GlobalModel
cdac-build-tool (2)
DataDescriptorModel.cs (2)
214
globals[globalName] = new
GlobalModel
{ Type = globalBuilder.Type, Value = v.Value };
224
subDescriptors[subDescriptorName] = new
GlobalModel
{ Type = subDescriptorBuilder.Type, Value = v.Value };
9 references to GlobalModel
cdac-build-tool (9)
DataDescriptorModel.cs (6)
21
public IReadOnlyDictionary<string,
GlobalModel
> Globals { get; }
22
public IReadOnlyDictionary<string,
GlobalModel
> SubDescriptors { get; }
30
private DataDescriptorModel(string baseline, IReadOnlyDictionary<string, TypeModel> types, IReadOnlyDictionary<string,
GlobalModel
> globals, IReadOnlyDictionary<string,
GlobalModel
> subDescriptors, IReadOnlyDictionary<string, string> contracts, uint platformFlags)
206
var globals = new Dictionary<string,
GlobalModel
>();
216
var subDescriptors = new Dictionary<string,
GlobalModel
>();
JsonConverter\GlobalModelJsonConverter.cs (3)
9
public class GlobalModelJsonConverter : JsonConverter<DataDescriptorModel.
GlobalModel
>
11
public override DataDescriptorModel.
GlobalModel
Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
16
public override void Write(Utf8JsonWriter writer, DataDescriptorModel.
GlobalModel
value, JsonSerializerOptions options)