summaryrefslogtreecommitdiff
path: root/js/src/tests/ecma_5/Function/builtin-no-prototype.js
blob: 3ad17e8e8e506424ebc10a6ad67e256c4e14f065 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

assertEq(undefined, void 0);

assertEq(Function.prototype.hasOwnProperty('prototype'), false);
assertEq(Function.prototype.prototype, undefined);

var builtin_ctors = [
    Object, Function, Array, String, Boolean, Number, Date, RegExp, Error,
    EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError
];

for (var i = 0; i < builtin_ctors.length; i++) {
    var c = builtin_ctors[i];
    assertEq(typeof c.prototype, (c === Function) ? "function" : "object");
    assertEq(c.prototype.constructor, c);
}

var builtin_funcs = [
    eval, isFinite, isNaN, parseFloat, parseInt,
    decodeURI, decodeURIComponent, encodeURI, encodeURIComponent
];

for (var i = 0; i < builtin_funcs.length; i++) {
    assertEq(builtin_funcs[i].hasOwnProperty('prototype'), false);
    assertEq(builtin_funcs[i].prototype, undefined);
}

var names = Object.getOwnPropertyNames(Math);
for (var i = 0; i < names.length; i++) {
    var m = Math[names[i]];
    if (typeof m === "function")
        assertEq(m.prototype, undefined);
}

reportCompare(0, 0, "don't crash");