1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

making equality left-associative so that our chaining works properly with it.

This commit is contained in:
Jeremy Ashkenas 2010-03-06 23:48:06 -05:00
parent 893fb98522
commit 3e3b71724d
17 changed files with 2121 additions and 3 deletions

View file

@ -1,5 +1,10 @@
(function(){
var BANNER, CoffeeScript, SWITCHES, compile_options, compile_script, compile_scripts, compile_stdio, fs, lint, option_parser, options, optparse, parse_options, path, print_tokens, sources, usage, version, watch_scripts, write_js;
// The `coffee` utility. Handles command-line compilation of CoffeeScript
// into various forms: saved into `.js` files or printed to stdout, piped to
// JSLint or recompiled every time the source is saved, printed as a token
// stream or as the syntax tree.
// External dependencies.
fs = require('fs');
path = require('path');
optparse = require('optparse');