blob: e83b9946a3717002be8d26f75a7e7c0f4bf7d1d4 (
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
|
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) {
g.apply(this, args);
}
}
// |f| must be small enough to be inlinable.
assertEq(isSmallFunction(f), true);
f(1, 2);
assertEq(result, 3);
f("");
assertEq(result, "undefined");
|