Inheritance: ICloneable, IEnumerable
コード例 #1
0
ファイル: class.cs プロジェクト: shugo/babel
 public IncludeClause(TypeSpecifier typeSpecifier,
                      IncludeModifier modifier,
                      NodeList featureModifierList,
                      Location location)
     : base(location)
 {
     this.typeSpecifier = typeSpecifier;
     this.modifier = modifier;
     this.featureModifierList = featureModifierList;
 }
コード例 #2
0
ファイル: statement.cs プロジェクト: shugo/babel
 public CaseStatement(Expression test,
                      NodeList whenPartList,
                      StatementList elsePart,
                      Location location)
     : base(location)
 {
     this.test = test;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
コード例 #3
0
ファイル: statement.cs プロジェクト: shugo/babel
 public TypecaseStatement(LocalExpression variable,
                          NodeList whenPartList,
                          StatementList elsePart,
                          Location location)
     : base(location)
 {
     this.variable = variable;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
コード例 #4
0
ファイル: statement.cs プロジェクト: shugo/babel
 public ProtectStatement(StatementList statementList,
                         NodeList whenPartList,
                         StatementList elsePart,
                         Location location)
     : base(location)
 {
     this.statementList = statementList;
     this.whenPartList = whenPartList;
     this.elsePart = elsePart;
 }
コード例 #5
0
ファイル: node.cs プロジェクト: shugo/babel
 public CompositeNode(Location location)
     : base(location)
 {
     children = new NodeList();
 }
コード例 #6
0
ファイル: node.cs プロジェクト: shugo/babel
 public CompositeNode()
     : base()
 {
     children = new NodeList();
 }