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
Thanks for letting us know about the update. This may fix live comments in some places, but after some testing, it appears mostly broken. Take the following example:
CoffeeScript
###COMMENT WORKS###describe'Student', ->it'should report grade', ->student=newStudentscore:75; # NO COMMENT IS OUTPUTexpect(student.grade()### COMMENT IS IN THE WRONG PLACE ###).toBe('C')
Compiler Output
(function(){/* BLOCK COMMENT */describe('Student',function(){returnit('should report grade',function(){varstudent;student=newStudent({score: 75});returnexpect(student.grade())./* COMMENT IS IN THE WRONG PLACE */toBe('C');});});}).call(this);
We will update our docs to indicate that Live Comments don't work due to CoffeeScript's comment migration behavior.
The docs are saying that Live Comments are not available in CoffeeScript due to this issue but, actually, it has been resolved more than two years ago
The text was updated successfully, but these errors were encountered: