public override void visit(UInt32Literal n)
 {
     n.Scope = Scope;
 }
 public void visit(UInt32Literal n)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 public ASTType visit(UInt32Literal n)
 {
     return new UInt32Type();
 }