コード例 #1
0
ファイル: Parser.cs プロジェクト: Benglin/designscript
 public Parser(Scanner scanner, ProtoCore.Core coreObj)
 {
     this.scanner = scanner;
     errors = new Errors();
     opKwData = new ProtoCore.DSASM.OpKeywordData();
     core = coreObj;
     root = new DesignScript.Parser.Associative.CodeBlockNode();
 }
コード例 #2
0
ファイル: Parser.cs プロジェクト: samuto/designscript
 public Parser(Scanner scanner, ProtoCore.Core coreObj)
 {
     this.scanner = scanner;
     errors = new Errors();
     core = coreObj;
     root = new DesignScript.Parser.Associative.CodeBlockNode();
 }