OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // Flags: --harmony-modules | 28 // Flags: --harmony-modules |
29 | 29 |
30 // Test basic module syntax, with and without automatic semicolon insertion. | 30 // Test that potential recompilation of the global scope does not screw up. |
31 | 31 |
32 module A {} | 32 "use strict"; |
33 | 33 |
34 module A1 = A | 34 var N = 1e5; // Number of loop iterations that trigger optimization. |
35 module A2 = A; | 35 |
36 module A3 = A2 | 36 module A { |
37 export var x = 1 | |
38 export function f() { return x } | |
39 } | |
40 var f = A.f | |
41 | |
42 assertEquals(1, A.x) | |
43 assertEquals(1, A.f()) | |
44 assertEquals(1, f()) | |
45 | |
46 A.x = 2 | |
47 | |
48 assertEquals(2, A.x) | |
49 assertEquals(2, A.f()) | |
50 assertEquals(2, f()) | |
51 | |
52 for (var i = 0; i < N; i++) { | |
53 if (i > N) print("impossible"); | |
54 } | |
55 | |
56 assertEquals(2, A.x) | |
57 assertEquals(2, A.f()) | |
58 assertEquals(2, f()) | |
59 | |
60 | |
61 // Same test with loop inside a module. | |
37 | 62 |
38 module B { | 63 module B { |
39 export vx | 64 module A { |
40 export vy, lz, c, f | 65 export var x = 1 |
66 export function f() { return x } | |
67 } | |
68 var f = A.f | |
41 | 69 |
42 var vx | 70 assertEquals(1, A.x) |
43 var vx, vy; | 71 assertEquals(1, A.f()) |
44 var vx = 0, vy | 72 assertEquals(1, f()) |
45 let lx, ly | |
46 let lz = 1 | |
47 const c = 9 | |
48 function f() {} | |
49 | 73 |
50 module C0 {} | 74 A.x = 2 |
51 | 75 |
52 export module C { | 76 assertEquals(2, A.x) |
53 let x | 77 assertEquals(2, A.f()) |
54 export module D { export let x } | 78 assertEquals(2, f()) |
55 let y | 79 |
80 for (var i = 0; i < N; i++) { | |
81 if (i > N) print("impossible"); | |
Michael Starzinger
2012/07/06 10:53:22
I am not sure if this will force recompilation. Un
| |
56 } | 82 } |
57 | 83 |
58 let zz = "" | 84 assertEquals(2, A.x) |
59 | 85 assertEquals(2, A.f()) |
60 export var x0 | 86 assertEquals(2, f()) |
61 export var x1, x2 = 6, x3 | |
62 export let y0 | |
63 export let y1 = 0, y2 | |
64 export const z0 = 0 | |
65 export const z1 = 2, z2 = 3 | |
66 export function f0() {} | |
67 export module M1 {} | |
68 export module M2 = C.D | |
69 export module M3 at "http://where" | |
70 | |
71 import i0 from I | |
72 import i1, i2, i3, M from I | |
73 //import i4, i5 from "http://where" | |
74 } | 87 } |
75 | |
76 module I { | |
77 export let i0, i1, i2, i3; | |
78 export module M {} | |
79 } | |
80 | |
81 module C1 = B.C; | |
82 module D1 = B.C.D | |
83 module D2 = C1.D | |
84 module D3 = D2 | |
85 | |
86 module E1 at "http://where" | |
87 module E2 at "http://where"; | |
88 module E3 = E1 | |
89 | |
90 // Check that ASI does not interfere. | |
91 | |
92 module X | |
93 { | |
94 let x | |
95 } | |
96 | |
97 module Y | |
98 = | |
99 X | |
100 | |
101 module Z | |
102 at | |
103 "file://local" | |
104 | |
105 import | |
106 vx | |
107 , | |
108 vy | |
109 from | |
110 B | |
111 | |
112 | |
113 module Wrap { | |
114 export | |
115 x | |
116 , | |
117 y | |
118 | |
119 export | |
120 var | |
121 v1 = 1 | |
122 | |
123 export | |
124 let | |
125 v2 = 2 | |
126 | |
127 export | |
128 const | |
129 v3 = 3 | |
130 | |
131 export | |
132 function | |
133 f | |
134 ( | |
135 ) | |
136 { | |
137 } | |
138 | |
139 export | |
140 module V | |
141 { | |
142 } | |
143 } | |
144 | |
145 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU | |
146 | |
147 | |
148 | |
149 // Check that 'module' still works as an identifier. | |
150 | |
151 var module | |
152 module = {} | |
153 module["a"] = 6 | |
154 function module() {} | |
155 function f(module) { return module } | |
156 try {} catch (module) {} | |
157 | |
158 module | |
159 v = 20 | |
OLD | NEW |