parser: split `AIntExpr` and `ADecIntExpr`
[nit.git] / src / parser / parser_nodes.nit
index 5a6fd23..c9db2fa 100644 (file)
@@ -1542,6 +1542,10 @@ end
 # An integer literal
 class AIntExpr
        super AExpr
+end
+# An integer literal in decimal format
+class ADecIntExpr
+       super AIntExpr
        readable writable var _n_number: TNumber
 end
 # A float literal