things are in motion -- bin/node_coffee is the new JS-only command line ... it can pass some of the tests

This commit is contained in:
Jeremy Ashkenas
2010-02-11 01:57:33 -05:00
parent f761c25dcd
commit 872b36c11d
83 changed files with 8312 additions and 226 deletions

15
vendor/jison/examples/basic_lex.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"lex": {
"rules": [
["\\s+", "/* skip whitespace */"],
["[0-9]+", "return 'NAT';"],
["\\+", "return '+';"]
]
},
"bnf": {
"E" :[ "E + T",
"T" ],
"T" :[ "NAT" ]
}
}