Add Fiber.try().

This commit is contained in:
Bob Nystrom
2014-10-15 06:36:42 -07:00
parent 24967ed4eb
commit f6cbb6ad75
13 changed files with 162 additions and 37 deletions
+12
View File
@@ -0,0 +1,12 @@
var a
var b
a = new Fiber {
b.try // expect runtime error: Fiber has already been called.
}
b = new Fiber {
a.call
}
b.call