switched from alphabetical __a __b temporary variables, to numeric _1, _2, which will be shorter in most cases

This commit is contained in:
Jeremy Ashkenas
2010-02-15 21:55:57 -05:00
parent 48c501a7a2
commit 4ea8be8e0b
8 changed files with 257 additions and 266 deletions

View File

@@ -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(' '));
};