mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-04-11 03:00:13 -04:00
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:
15
vendor/jison/examples/basic_lex.json
vendored
Normal file
15
vendor/jison/examples/basic_lex.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"lex": {
|
||||
"rules": [
|
||||
["\\s+", "/* skip whitespace */"],
|
||||
["[0-9]+", "return 'NAT';"],
|
||||
["\\+", "return '+';"]
|
||||
]
|
||||
},
|
||||
|
||||
"bnf": {
|
||||
"E" :[ "E + T",
|
||||
"T" ],
|
||||
"T" :[ "NAT" ]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user