Break statements.

This commit is contained in:
Bob Nystrom
2013-12-24 10:15:50 -08:00
parent a30a5daa29
commit 8c85232b90
6 changed files with 177 additions and 20 deletions
+9
View File
@@ -0,0 +1,9 @@
var done = false
while (!done) {
class Foo {
method {
break // expect error
}
}
done = true
}