public void CreateBaseConstructorNode()
 {
     this.baseConstr = new DesignScript.Parser.Associative.FunctionCallNode();
 }
示例#2
0
 void Assoc_FunctionCall(out Node node)
 {
     Assoc_Ident(out node);
     DesignScript.Parser.Associative.FunctionCallNode f = new DesignScript.Parser.Associative.FunctionCallNode(); f.Line = node.Line; f.Col = node.Col;
     Assoc_Arguments(ref f);
     f.Function = node;
     node = f;
 }
示例#3
0
 public void CreateBaseConstructorNode()
 {
     this.baseConstr = new DesignScript.Parser.Associative.FunctionCallNode();
 }