Code review tweaks.

This commit is contained in:
clutchski
2011-12-17 19:18:24 -05:00
parent c284f3f226
commit 347409e354
2 changed files with 4 additions and 4 deletions

View File

@@ -203,7 +203,7 @@
return this.tokens.splice((this.tag(i - 1) === ',' ? i - 1 : i), 0, outdent);
};
return this.scanTokens(function(token, i, tokens) {
var implicit, tag, _ref, _ref2;
var tag, _ref, _ref2;
tag = token[0];
if (tag === 'TERMINATOR' && this.tag(i + 1) === 'THEN') {
tokens.splice(i, 1);
@@ -219,7 +219,7 @@
}
if (__indexOf.call(SINGLE_LINERS, tag) >= 0 && this.tag(i + 1) !== 'INDENT' && !(tag === 'ELSE' && this.tag(i + 1) === 'IF')) {
starter = tag;
_ref2 = this.indentation(token, implicit = true), indent = _ref2[0], outdent = _ref2[1];
_ref2 = this.indentation(token, true), indent = _ref2[0], outdent = _ref2[1];
if (starter === 'THEN') indent.fromThen = true;
tokens.splice(i + 1, 0, indent);
this.detectEnd(i + 2, condition, action);

View File

@@ -213,7 +213,7 @@ class exports.Rewriter
if tag in SINGLE_LINERS and @tag(i + 1) isnt 'INDENT' and
not (tag is 'ELSE' and @tag(i + 1) is 'IF')
starter = tag
[indent, outdent] = @indentation token, implicit=true
[indent, outdent] = @indentation token, yes
indent.fromThen = true if starter is 'THEN'
tokens.splice i + 1, 0, indent
@detectEnd i + 2, condition, action
@@ -240,7 +240,7 @@ class exports.Rewriter
1
# Generate the indentation tokens, based on another token on the same line.
indentation: (token, implicit=false) ->
indentation: (token, implicit = false) ->
tokens = [['INDENT', 2, token[2]], ['OUTDENT', 2, token[2]]]
if implicit then (@generated(t) for t in tokens) else tokens