recompiling with latest jison (modified) and passing codenode generation

This commit is contained in:
Jeremy Ashkenas
2010-02-12 13:35:34 -05:00
parent 3f765c356a
commit 12859e575a
6 changed files with 26 additions and 40 deletions

View File

@@ -463,5 +463,5 @@ parser: new Parser({tokens: tokens, bnf: bnf, operators: operators.reverse(), st
# Save the parser to a file.
# puts parser.generate()
posix: require 'posix'
posix.open('parser.js', process.O_CREAT | process.O_WRONLY, 0755).addCallback (fd) ->
posix.open('lib/coffee_script/parser.js', process.O_CREAT | process.O_WRONLY, 0755).addCallback (fd) ->
posix.write(fd, parser.generate())