This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/parser.rs b/src/parser.rs | |
| index 0900ea9..e31dc55 100644 | |
| --- a/src/parser.rs | |
| +++ b/src/parser.rs | |
| @@ -1,5 +1,542 @@ | |
| use crate::lexer; | |
| +// TODO: | |
| +// Trying to implement a better parser to support c11 full standard | |
| +// assmue the the lexer can contains all keywords in the c11 standard, |