Added InputStream, Tokenizer, and Parser(unfinished) class. Changed Newerth to Aevum

This commit is contained in:
Daniel Xie
2016-11-14 00:42:31 -06:00
parent f311b0b84f
commit 40b0b585e1
7 changed files with 220 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
/* Parser
* Creates Abstract Syntax Tree Nodes
* Operates on a stream of tokens from the Tokenizer
*/
var FALSE = {type: "bool", value: false};
function Parser(input) {
}