X-Git-Url: http://nitlanguage.org diff --git a/src/parser/parser_abs.nit b/src/parser/parser_abs.nit index 77d4242..e2763e5 100644 --- a/src/parser/parser_abs.nit +++ b/src/parser/parser_abs.nit @@ -313,6 +313,18 @@ end class TOctNumber super Token end +class TBytenum + super Token +end +class THexBytenum + super Token +end +class TBinBytenum + super Token +end +class TOctBytenum + super Token +end class TFloat super Token end @@ -1106,6 +1118,26 @@ class AOctIntExpr var n_oct_number: TOctNumber is writable, noinit var n_annotations: nullable AAnnotations = null is writable end +class ADecByteExpr + super AExpr + var n_bytenum: TBytenum is writable, noinit + var n_annotations: nullable AAnnotations = null is writable +end +class AHexByteExpr + super AExpr + var n_hex_bytenum: THexBytenum is writable, noinit + var n_annotations: nullable AAnnotations = null is writable +end +class ABinByteExpr + super AExpr + var n_bin_bytenum: TBinBytenum is writable, noinit + var n_annotations: nullable AAnnotations = null is writable +end +class AOctByteExpr + super AExpr + var n_oct_bytenum: TOctBytenum is writable, noinit + var n_annotations: nullable AAnnotations = null is writable +end class AFloatExpr super AExpr var n_float: TFloat is writable, noinit