1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
This commit is contained in:
Gerald Lewis 2011-08-15 11:06:53 -04:00
parent 2fb2ddb9b4
commit f3253f4f5c

View file

@ -233,3 +233,7 @@ test "#1322: implicit call against implicit object with block comments", ->
x: 2
### y ###
y: 3
test "#1513: Top level bare objs need to be wrapped in parens for unary and existence ops", ->
doesNotThrow -> CoffeeScript.run "{}?", bare: true
doesNotThrow -> CoffeeScript.run "{}.a++", bare: true