Update grader

This commit is contained in:
Chunmyong Park
2020-07-02 06:54:19 +00:00
parent 114f38cbb6
commit d64e9f622e
36 changed files with 314 additions and 149 deletions

View File

@@ -580,6 +580,14 @@ peg::parser! {
suffix,
}
}
/
"0" suffix:ast_integer_suffix() {
ast::Integer {
base: ast::IntegerBase::Decimal,
number: Box::from("0"),
suffix,
}
}
/
"<ast_integer>" {
todo!()