1 write to Name
CodeGenerator (1)
FeatureCollectionGenerator.cs (1)
14Name = type,
14 references to Name
CodeGenerator (14)
FeatureCollectionGenerator.cs (14)
120{(feature.Index != 0 ? "else " : "")}if (key == typeof({feature.Name})) 122feature = _current{feature.Name}; 136{(feature.Index != 0 ? "else " : "")}if (key == typeof({feature.Name})) 138_current{feature.Name} = ({feature.Name}?)value; 154{(feature.Index != 0 ? "else " : "")}if (typeof(TFeature) == typeof({feature.Name})) 156feature = Unsafe.As<{feature.Name}?, TFeature?>(ref _current{feature.Name}); 178{(feature.Index != 0 ? "else " : "")}if (typeof(TFeature) == typeof({feature.Name})) 180_current{feature.Name} = Unsafe.As<TFeature?, {feature.Name}?>(ref feature); 190if (_current{feature.Name} != null) 192yield return new KeyValuePair<Type, object>(typeof({feature.Name}), _current{feature.Name});