You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
causes the CoffeeRewriter to (correctly) raise a syntax error. However, the rewriter then removes all tokens following that error (at CoffeeRewriter:868). This causes the reconciler to throw an error (with the same symptoms as #19).
Throwing out the entire remainder of the parse, while safe, does not appear to be the correct action here.
The text was updated successfully, but these errors were encountered:
Attempting to parse the following snippet
console.log 'a',
causes the CoffeeRewriter to (correctly) raise a syntax error. However, the rewriter then removes all tokens following that error (at CoffeeRewriter:868). This causes the reconciler to throw an error (with the same symptoms as #19).
Throwing out the entire remainder of the parse, while safe, does not appear to be the correct action here.
The text was updated successfully, but these errors were encountered: