author | mikael |
Thu, 19 Apr 2018 17:13:19 -0700 | |
changeset 49838 | b37e0785ce0b |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
41238
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
1 |
/* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
4 |
* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
8 |
* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
13 |
* accompanied this code). |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
14 |
* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
18 |
* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
21 |
* questions. |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
22 |
*/ |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
23 |
|
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
24 |
/** |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
25 |
* JDK-8166902: Nested object literal property maps not reset in optimistic recompilation |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
26 |
* |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
27 |
* @test |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
28 |
* @run |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
29 |
*/ |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
30 |
|
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
31 |
var o = { |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
32 |
a: "A", |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
33 |
b: "B" |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
34 |
}; |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
35 |
|
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
36 |
var m = { |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
37 |
x: { z: o.a }, |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
38 |
y: o.b |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
39 |
}; |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
40 |
|
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
41 |
Assert.assertEquals(m.x.z, "A"); |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
42 |
Assert.assertEquals(m.y, "B"); |
a3c1a712c67e
8166902: Nested object literal property maps not reset in optimistic recompilation
hannesw
parents:
diff
changeset
|
43 |