public IncludeClause(TypeSpecifier typeSpecifier, IncludeModifier modifier, NodeList featureModifierList, Location location) : base(location) { this.typeSpecifier = typeSpecifier; this.modifier = modifier; this.featureModifierList = featureModifierList; }
public CaseStatement(Expression test, NodeList whenPartList, StatementList elsePart, Location location) : base(location) { this.test = test; this.whenPartList = whenPartList; this.elsePart = elsePart; }
public TypecaseStatement(LocalExpression variable, NodeList whenPartList, StatementList elsePart, Location location) : base(location) { this.variable = variable; this.whenPartList = whenPartList; this.elsePart = elsePart; }
public ProtectStatement(StatementList statementList, NodeList whenPartList, StatementList elsePart, Location location) : base(location) { this.statementList = statementList; this.whenPartList = whenPartList; this.elsePart = elsePart; }
public CompositeNode(Location location) : base(location) { children = new NodeList(); }
public CompositeNode() : base() { children = new NodeList(); }