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