blob: e3b741e0ef8d9e87c054617e11b470cbffbcf745 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// With-Statements are not supported in Ion, therefore functions containing
// them can't be inlined in Ion. However it's still possible to inline the
// property access to the getter into a simple guard-shape instruction.
// Defined outside of the test functions to ensure they're recognised as
// constants in Ion.
var atom = "prop";
var symbol = Symbol();
function testAtom() {
var holder = {
get [atom]() {
with ({}) {
return 1;
}
}
};
function f() {
for (var i = 0; i < 1000; ++i) {
var x = holder[atom];
assertEq(x, 1);
}
}
for (var i = 0; i < 2; i++) {
f();
}
}
testAtom();
function testSymbol() {
var holder = {
get [symbol]() {
with ({}) {
return 1;
}
}
};
function f() {
for (var i = 0; i < 1000; ++i) {
var x = holder[symbol];
assertEq(x, 1);
}
}
for (var i = 0; i < 2; i++) {
f();
}
}
testSymbol();
|