summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/funcall.js
blob: a57e0ce97b2a7bd1c61c3fe2b8defd183ea46e3c (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
53
54
function test1() {
    var f = function() { return 1; };

    for (var i=0; i<25; i++) {
	f.call();
	if (i > 20)
	    f = Math.abs;
   }
}
test1();

var origCall = Function.prototype.call;

function test2() {
    var f = function() { return 1; };
    var c = 0;
    for (var i=0; i<25; i++) {
	f.call();
	if (i > 20)
	    Function.prototype.call = function() { c++; };
    }
    assertEq(c, 3);
}
test2();
Function.prototype.call = origCall;

function test3() {
    var f = function() { return 1; };
    for (var i=0; i<25; i++) {
	f.call();
	if (i > 20)
	    Function.prototype.call = undefined;
    }
}
try {
    test3();
    assertEq(0, 1);
} catch(e) {}

Function.prototype.call = origCall;

function test4() {
    var f = function(a, b, c) {
	assertEq(arguments.length, 1);
	assertEq(a, 1);
	assertEq(b, undefined);
	assertEq(c, undefined);
	return 1;
    };
    for (var i=0; i<25; i++) {
	f.call(null, 1);
    }
}
test4();