-
Notifications
You must be signed in to change notification settings - Fork 1
pandasoli/floria
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
 |  | |||
Repository files navigation
Floria 🌸 A very tiny pretty programming language ________________________________________ +--------------------------------------+ | lexer -> | | parser -- | | typechecker -- | | asm | +--------------------------------------+ * -- gives its output to the next step * -> has functions called by the next step * <- has functions called by the previous step ________________________________________ Having the parser calling the lexer for the next token might not be a good idea in case there's a bad token in the end, might lexering everything and putting into a file would be better (giving a list of tokens doesn't seem a good one).