1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

adding an instanceof test for constructors-called-with-splats

This commit is contained in:
Jeremy Ashkenas 2010-07-13 08:57:42 -04:00
parent c3410e722e
commit c6e1a96882

View file

@ -168,4 +168,5 @@ class Connection
list: [3, 2, 1]
conn: new Connection list...
ok conn instanceof Connection
ok conn.out() is '3-2-1'