We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8122f commit ae121d5Copy full SHA for ae121d5
test/comments.coffee
@@ -399,3 +399,22 @@ test "#3132: Place block-comments nicely", ->
399
400
"""
401
eq CoffeeScript.compile(input, bare: on), result
402
+
403
+test "#3638: Demand a whitespace after # symbol", ->
404
+ input = """
405
+ ###
406
+ #No
407
+ #whitespace
408
+ ###"""
409
410
+ result = """
411
412
+ /*
413
414
415
+ */
416
417
418
+ """
419
420
+ eq CoffeeScript.compile(input, bare: on), result
0 commit comments