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:
Michael Ficarra 2011-05-25 03:22:06 -04:00
parent e64fa71185
commit 8e5eff5e1e

View file

@ -478,6 +478,11 @@ test "#1182: external constructors with bound functions", ->
ok (new A).method.call(new B)
test "#1372: bound class methods with reserved names", ->
class C
delete: =>
ok C::delete
class C
delete: =>
ok C::delete
test "#1380: `super` with reserved names", ->
class C
do: -> super
ok C::do