コード例 #1
0
 public override void visit(MinusExp n)
 {
     n.Scope = Scope;
     n.e1.accept(this);
     n.e2.accept(this);
 }
コード例 #2
0
 public void visit(MinusExp n)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public ASTType visit(MinusExp n)
 {
     return CheckTypes(n);
 }