| Index: test/webkit/fast/js/kde/parse.js
|
| diff --git a/test/webkit/fast/js/kde/parse.js b/test/webkit/fast/js/kde/parse.js
|
| index 94467f1061cc0038abe046fda4aeb4268ad182c4..453150d7145101320f650a312c0bab7881d399e0 100644
|
| --- a/test/webkit/fast/js/kde/parse.js
|
| +++ b/test/webkit/fast/js/kde/parse.js
|
| @@ -28,16 +28,12 @@ shouldBe("function test() { while(0) break; } lab: 1", "1");
|
| shouldBe("function test() { while(0) continue; } lab: 1", "1");
|
|
|
| shouldBe("function test() { return lab;} lab: 1", "1");
|
| -shouldThrow("function test() { while(0) break lab; } lab: 1");
|
| -shouldThrow("function test() { while(0) continue lab; } lab: 1");
|
|
|
| shouldBe("function test() { return } lab: 1", "1");
|
| shouldBe("function test() { while(0) break } lab: 1", "1");
|
| shouldBe("function test() { while(0) continue } lab: 1", "1");
|
|
|
| shouldBe("function test() { return 0 } lab: 1", "1");
|
| -shouldThrow("function test() { while(0) break lab } lab: 1");
|
| -shouldThrow("function test() { while(0) continue lab } lab: 1");
|
|
|
| a = 1
|
| b = 123 // comment
|
|
|