first draft of mandatory parentheses around function definition param lists -- all tests pass

This commit is contained in:
Jeremy Ashkenas
2010-01-26 00:40:58 -05:00
parent 63b44a2b03
commit 460b3f6d8e
57 changed files with 1396 additions and 1561 deletions

View File

@@ -6,12 +6,12 @@ factories: {}
loader: {
# Reload the coffee-script environment from source.
reload: topId, path =>
reload: (topId, path) =>
coffeescript ||= require('coffee-script')
factories[topId]: => coffeescript.makeNarwhalFactory(path)
factories[topId]: () => coffeescript.makeNarwhalFactory(path)
# Ensure that the coffee-script environment is loaded.
load: topId, path =>
load: (topId, path) =>
factories[topId] ||= this.reload(topId, path)
}