示例#1
0
 public void testParseHexa()
 {
     Assert.AreEqual(0x0A11, HexaLiteral.parseHexa("0x0A11").LongValue);
 }
 public override void visit(HexaLiteral n)
 {
     n.Scope = Scope;
 }
 public void visit(HexaLiteral n)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public ASTType visit(HexaLiteral n)
 {
     return new HexaType();
 }