Created
August 14, 2015 04:43
-
-
Save Swoorup/3a52d9018030c629b8d4 to your computer and use it in GitHub Desktop.
Try parsing and executing the syntax tree
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
// parse the tokens into an abstract syntax tree | |
if (!lexerbuf.ntoks || parse(&lexerbuf, &exectree) != 0) { | |
continue; | |
} | |
execute_syntax_tree(exectree); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment