public IncludeClause(TypeSpecifier typeSpecifier, IncludeModifier modifier, NodeList featureModifierList, Location location) : base(location) { this.typeSpecifier = typeSpecifier; this.modifier = modifier; this.featureModifierList = featureModifierList; }
public FeatureModifier(string name, string newName, IncludeModifier newModifier, Location location) : base(location) { this.name = name; this.newName = newName; this.newModifier = newModifier; }