diff options
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index a007e76b..cdeea241 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -255,6 +255,7 @@ tag lit_ { lit_int(int); lit_uint(uint); lit_mach_int(ty_mach, int); + lit_float(str); lit_nil; lit_bool(bool); } @@ -274,6 +275,7 @@ tag ty_ { ty_bool; ty_int; ty_uint; + ty_float; ty_machine(util.common.ty_mach); ty_char; ty_str; |