mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
@@ -193,7 +193,7 @@
|
||||
};
|
||||
inImplicitControl = function() {
|
||||
var ref;
|
||||
return inImplicit && ((ref = stackTop()) != null ? ref[0] : void 0) === 'CONTROL';
|
||||
return inImplicit() && ((ref = stackTop()) != null ? ref[0] : void 0) === 'CONTROL';
|
||||
};
|
||||
startImplicitCall = function(j) {
|
||||
var idx;
|
||||
|
||||
@@ -154,7 +154,7 @@ exports.Rewriter = class Rewriter
|
||||
inImplicitObject = -> inImplicit() and stackTop()?[0] is '{'
|
||||
# Unclosed control statement inside implicit parens (like
|
||||
# class declaration or if-conditionals)
|
||||
inImplicitControl = -> inImplicit and stackTop()?[0] is 'CONTROL'
|
||||
inImplicitControl = -> inImplicit() and stackTop()?[0] is 'CONTROL'
|
||||
|
||||
startImplicitCall = (j) ->
|
||||
idx = j ? i
|
||||
|
||||
Reference in New Issue
Block a user