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

merged matehat's utility branch, arraySlice -> slice, removed dead dependency...

This commit is contained in:
Jeremy Ashkenas 2010-03-30 18:27:53 -04:00
parent a6248d03e5
commit f0d731009f
7 changed files with 27 additions and 24 deletions

View file

@ -24,7 +24,7 @@
arguments: []
};
args = normalize_arguments(args);
while (arg = args.shift()) {
while ((arg = args.shift())) {
is_option = !!(arg.match(LONG_FLAG) || arg.match(SHORT_FLAG));
matched_rule = false;
_b = this.rules;