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
Block comments are typically meant to be used as multi-line comments, such as this:
/*
Comment
Comment
/*
Using a block comment on a single line like below causes a syntax error:
/* Comment Comment */
Although it is unlikely that this will be an issue, since we have support natively for single-line comment syntax with //, this is an unintended error and should be resolved.
The text was updated successfully, but these errors were encountered:
Block comments are typically meant to be used as multi-line comments, such as this:
Using a block comment on a single line like below causes a syntax error:
Although it is unlikely that this will be an issue, since we have support natively for single-line comment syntax with
//
, this is an unintended error and should be resolved.The text was updated successfully, but these errors were encountered: