summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/Function.js
blob: c46ba99aaabc1402432c90546f9ace736493b3b0 (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
load("test-common.js");

try {
    assert(Function.length === 1);
    assert(Function.prototype.length === 0);
    assert(typeof Function() === "function");
    assert(typeof new Function() === "function");
    assert(Function()() === undefined);
    assert(new Function()() === undefined);
    assert(Function("return 42")() === 42);
    assert(new Function("return 42")() === 42);
    assert(new Function("foo", "return foo")(42) === 42);
    assert(new Function("foo,bar", "return foo + bar")(1, 2) === 3);
    assert(new Function("foo", "bar", "return foo + bar")(1, 2) === 3);
    assert(new Function("foo", "bar,baz", "return foo + bar + baz")(1, 2, 3) === 6);
    assert(new Function("foo", "bar", "baz", "return foo + bar + baz")(1, 2, 3) === 6);
    assert(new Function("foo", "if (foo) { return 42; } else { return 'bar'; }")(true) === 42);
    assert(new Function("foo", "if (foo) { return 42; } else { return 'bar'; }")(false) === "bar");
    assert(new Function("return typeof Function()")() === "function");
    assert(new Function("x", "return function (y) { return x + y };")(1)(2) === 3);

    console.log("PASS");
} catch (e) {
    console.log("FAIL: " + e.message);
}