mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
29 lines
466 B
Text
29 lines
466 B
Text
![]() |
comment comment
|
||
|
|
||
|
test "basic literate CoffeeScript parsing", ->
|
||
|
ok yes
|
||
|
|
||
|
now with a...
|
||
|
|
||
|
test "broken up indentation", ->
|
||
|
|
||
|
... broken up ...
|
||
|
|
||
|
do ->
|
||
|
|
||
|
... nested block.
|
||
|
|
||
|
ok yes
|
||
|
|
||
|
Code in `backticks is not parsed` and...
|
||
|
|
||
|
test "comments in indented blocks work", ->
|
||
|
do ->
|
||
|
do ->
|
||
|
# Regular comment.
|
||
|
|
||
|
###
|
||
|
Block comment.
|
||
|
###
|
||
|
|
||
|
ok yes
|