Inheritance: ICloneable, IEnumerable
Beispiel #1
0
 public IncludeClause(TypeSpecifier typeSpecifier,
                      IncludeModifier modifier,
                      NodeList featureModifierList,
                      Location location)
     : base(location)
 {
     this.typeSpecifier = typeSpecifier;
     this.modifier = modifier;
     this.featureModifierList = featureModifierList;
 }
Beispiel #2
0
 public CaseStatement(Expression test,
                      NodeList whenPartList,
                      StatementList elsePart,
                      Location location)
     : base(location)
 {
     this.test = test;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
Beispiel #3
0
 public TypecaseStatement(LocalExpression variable,
                          NodeList whenPartList,
                          StatementList elsePart,
                          Location location)
     : base(location)
 {
     this.variable = variable;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
Beispiel #4
0
 public ProtectStatement(StatementList statementList,
                         NodeList whenPartList,
                         StatementList elsePart,
                         Location location)
     : base(location)
 {
     this.statementList = statementList;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
Beispiel #5
0
 public CompositeNode(Location location)
     : base(location)
 {
     children = new NodeList();
 }
Beispiel #6
0
 public CompositeNode()
     : base()
 {
     children = new NodeList();
 }