1
0
forked from Mirror/wren

super at top level: Allow the compiler to continue compilation after erroring. Added two more tests.

This commit is contained in:
Kyle Marek-Spartz
2015-01-11 17:43:51 -06:00
parent 3490c8d2f3
commit c376d88e61
2 changed files with 28 additions and 18 deletions

View File

@ -1,2 +1,4 @@
super.foo // expect error
super // expect error
super.foo("bar") // expect error
super("foo") // expect error