コード例 #1
0
ファイル: Statement.cs プロジェクト: Stg3orge/P4Projekt
 //<Statement> ::= <Identifiers> '=' Call <Identifiers> '(' <CallingParameters> ')' ';'
 public Statement(ParserContext context, Value value1, Value value2, CallingParameters callingParameters) : base(context)
 {
     this.Value1            = value1;
     this.Value2            = value2;
     this.CallingParameters = callingParameters;
     NodeType = NodeTypes.AssignMethod;
 }
コード例 #2
0
ファイル: Statement.cs プロジェクト: Stg3orge/P4Projekt
 //<Statement> ::= <Identifiers> '=' Call <PrefabMethods> '(' <CallingParameters> ')' ';'
 public Statement(ParserContext context, Value value, PrefabMethods prefabMethods, CallingParameters callingParameters) : base(context)
 {
     this.Value1            = value;
     this.PrefabMethods     = prefabMethods;
     this.CallingParameters = callingParameters;
     NodeType = NodeTypes.AssignPrefabMethod;
 }