Implementing sethaurus' suggestion for better temp variable names -- getting rid of the numbers.

This commit is contained in:
Jeremy Ashkenas
2010-02-16 18:00:40 -05:00
parent e4bb6c91e7
commit db6bc0ba02
8 changed files with 256 additions and 256 deletions

View File

@@ -50,14 +50,14 @@
};
// Pretty-print a token stream.
exports.print_tokens = function print_tokens(tokens) {
var _1, _2, _3, strings, token;
var _a, _b, _c, strings, token;
strings = (function() {
_1 = []; _2 = tokens;
for (_3 = 0; _3 < _2.length; _3++) {
token = _2[_3];
_1.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
_a = []; _b = tokens;
for (_c = 0; _c < _b.length; _c++) {
token = _b[_c];
_a.push('[' + token[0] + ' ' + token[1].toString().replace(/\n/, '\\n') + ']');
}
return _1;
return _a;
}).call(this);
return puts(strings.join(' '));
};