summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/function-tosource-lambda.js
blob: 97f28b40ff91334eb7f75fdd90ed25a8d74828f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var f1 = function f0(a, b) { return a + b; }
if (Function.prototype.toSource) {
    assertEq(f1.toSource(), "(function f0(a, b) { return a + b; })");
}
assertEq(f1.toString(), "function f0(a, b) { return a + b; }");
assertEq(decompileFunction(f1), f1.toString());
var f2 = function (a, b) { return a + b; };
if (Function.prototype.toSource) {
    assertEq(f2.toSource(), "(function (a, b) { return a + b; })");
}
assertEq(f2.toString(), "function (a, b) { return a + b; }");
assertEq(decompileFunction(f2), f2.toString());
var f3 = (function (a, b) { return a + b; });
if (Function.prototype.toSource) {
    assertEq(f3.toSource(), "(function (a, b) { return a + b; })");
}
assertEq(f3.toString(), "function (a, b) { return a + b; }");
assertEq(decompileFunction(f3), f3.toString());