removing deprecated references to process.mixin in favor of helpers.extend for Node 0.1.32

This commit is contained in:
Jeremy Ashkenas
2010-03-15 22:53:25 -07:00
parent 3aeb8c6bdb
commit 02f4cb75dd
13 changed files with 39 additions and 18 deletions

View File

@@ -8,10 +8,11 @@
# Set up dependencies correctly for both the server and the browser.
if process?
process.mixin require './nodes'
path: require 'path'
Lexer: require('./lexer').Lexer
parser: require('./parser').parser
helpers: require('./helpers').helpers
helpers.extend global, require './nodes'
else
this.exports: this.CoffeeScript: {}
Lexer: this.Lexer