Lines Matching refs:arguments
1064 // Regression test: Bizzare behavior on non-strict arguments object.
1068 // Here arguments[0] is a fast alias on arg0.
1069 Object.defineProperty(arguments, "0", {
1073 // Here arguments[0] is a slow alias on arg0.
1074 Object.defineProperty(arguments, "0", {
1078 // Here arguments[0] is no alias at all.
1079 Object.defineProperty(arguments, "0", {
1083 assertEquals(3, arguments[0]);