Index: test/webkit/dfg-inline-arguments-int32.js |
diff --git a/test/webkit/concat-while-having-a-bad-time.js b/test/webkit/dfg-inline-arguments-int32.js |
similarity index 68% |
copy from test/webkit/concat-while-having-a-bad-time.js |
copy to test/webkit/dfg-inline-arguments-int32.js |
index dfda1e08a0b36194b787a44ee12a9693acd8aeaf..8d95c6fcd5b3c1c4c02524eaca5168246aa6b185 100644 |
--- a/test/webkit/concat-while-having-a-bad-time.js |
+++ b/test/webkit/dfg-inline-arguments-int32.js |
@@ -22,10 +22,32 @@ |
// 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 were represented as unboxed int32." |
); |
-Object.defineProperty(Array.prototype, 0, { writable: false }); |
-shouldBe("[42].concat()", "[42]"); |
+function foo() { |
+ return bar.arguments; |
+} |
+function bar(a,b,c) { |
+ 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(__i + 1, __i + 2, __i + 3))", "\"[object Arguments]: " + (__i + 1) + ", " + (__i + 2) + ", " + (__i + 3) + "\""); |
+ |
+var successfullyParsed = true; |