1 write to _typeMap
BoundTreeGenerator (1)
BoundNodeClassWriter.cs (1)
41
_typeMap
= tree.Types.Where(t => t is not (EnumType or ValueType)).ToDictionary(n => n.Name, n => n.Base);
5 references to _typeMap
BoundTreeGenerator (5)
BoundNodeClassWriter.cs (5)
42
_typeMap
.Add(tree.Root, null);
288
return !
_typeMap
.Values.Contains(node.Name);
721
string name =
_typeMap
[node.Name];
1760
if (derivedTypeName != null &&
_typeMap
.TryGetValue(derivedTypeName, out var baseType))
1769
return
_typeMap
.ContainsKey(typeName);