예제 #1
0
 public override AST Led(AST left)
 {
     return new AST("SUB", left, this.parser.Parse( this.Lbp ) );
 }
예제 #2
0
파일: AST.cs 프로젝트: MattDiesel/cs-pratt
 public AST(string name, AST left, AST right)
 {
     this.Name = name;
     this.Left = left;
     this.Right = right;
 }