| Index: test/message/syntactic-tail-call-in-comma.js
|
| diff --git a/test/message/syntactic-tail-call-in-try.js b/test/message/syntactic-tail-call-in-comma.js
|
| similarity index 83%
|
| copy from test/message/syntactic-tail-call-in-try.js
|
| copy to test/message/syntactic-tail-call-in-comma.js
|
| index 97eb4f757ab27e898e888078a46b80a8df61097a..f2359d5f62b2ec43cbf64ec9f996b2a21a7835ee 100644
|
| --- a/test/message/syntactic-tail-call-in-try.js
|
| +++ b/test/message/syntactic-tail-call-in-comma.js
|
| @@ -9,8 +9,5 @@ function f() {
|
| }
|
|
|
| function g() {
|
| - try {
|
| - return continue f();
|
| - } catch(e) {
|
| - }
|
| + return 1, 2, 3, continue f() , 4 ;
|
| }
|
|
|