author | hannesw |
Thu, 11 Apr 2013 12:16:39 +0200 | |
changeset 16943 | a1b9b7970813 |
parent 16186 | 91bd9d2aa2f5 |
child 24778 | 2ff5d7041566 |
permissions | -rw-r--r-- |
16186
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
1 |
/* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
2 |
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
4 |
* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
8 |
* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
13 |
* accompanied this code). |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
14 |
* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
18 |
* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
21 |
* questions. |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
22 |
*/ |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
23 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
24 |
/** |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
25 |
* JDK-8006570 : this-value for non-strict functions should be converted to object |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
26 |
* |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
27 |
* @test |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
28 |
* @run |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
29 |
*/ |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
30 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
31 |
var strict, nonstrict; |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
32 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
33 |
nonstrict = Object.prototype.nonstrict = function nonstrict() { |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
34 |
print(typeof this, this instanceof Object); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
35 |
}; |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
36 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
37 |
(function() { |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
38 |
"use strict"; |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
39 |
strict = Object.prototype.strict = function strict() { |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
40 |
print(typeof this, this instanceof Object); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
41 |
}; |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
42 |
})(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
43 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
44 |
"foo".nonstrict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
45 |
(1).nonstrict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
46 |
true.nonstrict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
47 |
nonstrict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
48 |
nonstrict.call(null); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
49 |
nonstrict.call("foo"); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
50 |
nonstrict.call(1); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
51 |
nonstrict.call(true); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
52 |
|
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
53 |
"foo".strict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
54 |
(1).strict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
55 |
true.strict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
56 |
strict(); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
57 |
strict.call(null); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
58 |
strict.call("foo"); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
59 |
strict.call(1); |
91bd9d2aa2f5
8006570: This-value for non-strict functions should be converted to object
hannesw
parents:
diff
changeset
|
60 |
strict.call(true); |