diff options
Diffstat (limited to 'oryxc/src')
| -rw-r--r-- | oryxc/src/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oryxc/src/parser.rs b/oryxc/src/parser.rs index a0762c7..69e9b1a 100644 --- a/oryxc/src/parser.rs +++ b/oryxc/src/parser.rs @@ -31,10 +31,10 @@ pub enum AstType { Function, /* (prototype, body) */ Identifier, /* (_, _) */ MultiDefBind, /* (extra-data, _) */ - Number, /* (token, _) */ + Number, /* (_, _) */ Pointer, /* (rhs, _) */ Return, /* (extra-data, _) */ - String, /* (token, _) */ + String, /* (_, _) */ UnaryOperator, /* (rhs, _) */ BinaryOperator, /* (lhs, rhs) */ } |