コード例 #1
0
ファイル: parseResult.cs プロジェクト: zhcalvin/Compiler
 public parseResult(keyInfo curKey, string stackTop, string outPut, int row, string stack)
 {
     this.outPut   = outPut;
     this.stackTop = stackTop;
     this.curKey   = curKey;
     this.row      = row;
     this.stack    = stack;
 }
コード例 #2
0
ファイル: parseResult.cs プロジェクト: zhcalvin/Compiler
 public void setCurKey(keyInfo curKey)
 {
     this.curKey = curKey;
 }