summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Reflect/shell.js
blob: 2aa5397ed9c89abcec72bf27274bb743cefa5d9f (plain)
1
2
3
4
5
6
7
8
9
// List of a few values that are not objects.
var SOME_PRIMITIVE_VALUES = [
    undefined, null,
    false,
    -Infinity, -1.6e99, -1, -0, 0, Math.pow(2, -1074), 1, 4294967295,
    Number.MAX_SAFE_INTEGER, Number.MAX_SAFE_INTEGER + 1, 1.6e99, Infinity, NaN,
    "", "Phaedo",
    Symbol(), Symbol("iterator"), Symbol.for("iterator"), Symbol.iterator
];