we don't need relative require's because the paths are set up correctly -- removing the unused runner.coffee script

This commit is contained in:
Jeremy Ashkenas
2010-02-17 00:50:08 -05:00
parent 6446e0004c
commit 5a81fcd42e
11 changed files with 13 additions and 36 deletions

View File

@@ -1,9 +1,9 @@
# Set up for both the browser and the server.
if process?
process.mixin require './nodes'
process.mixin require 'nodes'
path: require 'path'
lexer: new (require('./lexer').Lexer)()
parser: require('./parser').parser
lexer: new (require('lexer').Lexer)()
parser: require('parser').parser
else
this.exports: this
lexer: new Lexer()