author | lana |
Fri, 18 Sep 2015 10:46:52 -0700 | |
changeset 32707 | 66a34f37d152 |
parent 32434 | 769b3d81ae69 |
permissions | -rw-r--r-- |
32434
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
1 |
/* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
4 |
* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
8 |
* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
13 |
* accompanied this code). |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
14 |
* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
18 |
* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
21 |
* questions. |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
22 |
*/ |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
23 |
|
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
24 |
/** |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
25 |
* JDK-8134731: `Function.prototype.apply` interacts incorrectly with `arguments` |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
26 |
* |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
27 |
* @test |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
28 |
* @run |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
29 |
*/ |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
30 |
|
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
31 |
function func() { |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
32 |
return (function(f){ |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
33 |
return function(a1, a2, a3, a4){ |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
34 |
return (f.apply(this, arguments)); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
35 |
} |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
36 |
})(function(){ |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
37 |
return arguments.length; |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
38 |
}) |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
39 |
} |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
40 |
|
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
41 |
Assert.assertTrue(func()() == 0); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
42 |
Assert.assertTrue(func()(33) == 1); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
43 |
Assert.assertTrue(func()(33, true) == 2); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
44 |
Assert.assertTrue(func()(33, true, "hello") == 3); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
45 |
Assert.assertTrue(func()(33, true, "hello", "world") == 4); |
769b3d81ae69
8134731: Function.prototype.apply interacts incorrectly with arguments
sundar
parents:
diff
changeset
|
46 |
Assert.assertTrue(func()(33, true, "hello", "world", 42) == 5); |