mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-17 19:11:22 -05:00
switched from alphabetical __a __b temporary variables, to numeric _1, _2, which will be shorter in most cases
This commit is contained in:
@@ -50,14 +50,14 @@
|
||||
};
|
||||
// Pretty-print a token stream.
|
||||
exports.print_tokens = function print_tokens(tokens) {
|
||||
var __a, __b, __c, strings, token;
|
||||
var _1, _2, _3, strings, token;
|
||||
strings = (function() {
|
||||
__a = []; __b = tokens;
|
||||
for (__c = 0; __c < __b.length; __c++) {
|
||||
token = __b[__c];
|
||||
__a.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
|
||||
_1 = []; _2 = tokens;
|
||||
for (_3 = 0; _3 < _2.length; _3++) {
|
||||
token = _2[_3];
|
||||
_1.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
|
||||
}
|
||||
return __a;
|
||||
return _1;
|
||||
}).call(this);
|
||||
return puts(strings.join(' '));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user