blob: 290bbddcf754e201ca14222bf20afa974605106a (
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
|
setJitCompilerOption("inlining.bytecode-max-length", 200);
var result;
function g(a, b) {
with ({}) {}
result = a + b;
}
function escape() { with({}) {} }
function f(...args) {
escape(args);
for (var i = 0; i < 50; ++i) {
new g(...args);
}
}
// |f| must be small enough to be inlinable.
assertEq(isSmallFunction(f), true);
f(1, 2);
assertEq(result, 3);
f("");
assertEq(result, "undefined");
|