| Index: test/webkit/dfg-inline-arguments-reset.js
|
| diff --git a/test/webkit/concat-while-having-a-bad-time.js b/test/webkit/dfg-inline-arguments-reset.js
|
| similarity index 69%
|
| copy from test/webkit/concat-while-having-a-bad-time.js
|
| copy to test/webkit/dfg-inline-arguments-reset.js
|
| index dfda1e08a0b36194b787a44ee12a9693acd8aeaf..e4b955994d45bd6abed7ae4a48887364caab0fd4 100644
|
| --- a/test/webkit/concat-while-having-a-bad-time.js
|
| +++ b/test/webkit/dfg-inline-arguments-reset.js
|
| @@ -22,10 +22,33 @@
|
| // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| description(
|
| -"Tests the behavior of Array.prototype.concat while the array is having a bad time due to one of the elements we are concatenating."
|
| +"This tests that inlining preserves function.arguments functionality if the arguments are reassigned."
|
| );
|
|
|
| -Object.defineProperty(Array.prototype, 0, { writable: false });
|
| -shouldBe("[42].concat()", "[42]");
|
| +function foo() {
|
| + return bar.arguments;
|
| +}
|
|
|
| +function bar(a,b,c) {
|
| + b = a;
|
| + return foo(a,b,c);
|
| +}
|
|
|
| +function baz(a,b,c) {
|
| + return bar(a,b,c);
|
| +}
|
| +
|
| +function argsToStr(args) {
|
| + var str = args + ": ";
|
| + for (var i = 0; i < args.length; ++i) {
|
| + if (i)
|
| + str += ", ";
|
| + str += args[i];
|
| + }
|
| + return str;
|
| +}
|
| +
|
| +for (var __i = 0; __i < 200; ++__i)
|
| + shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", a" + __i + ", c" + __i + "\"");
|
| +
|
| +var successfullyParsed = true;
|
|
|