mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 22:08:59 +00:00
This commit adds the following classes: SymbolObject, SymbolConstructor, SymbolPrototype, and Symbol. This commit does not introduce any new functionality to the Object class, so they cannot be used as property keys in objects.
30 lines
871 B
JavaScript
30 lines
871 B
JavaScript
load("test-common.js")
|
|
|
|
try {
|
|
const localSym = Symbol("foo");
|
|
const globalSym = Symbol.for("foo");
|
|
|
|
assert(localSym !== globalSym);
|
|
assert(localSym !== Symbol("foo"));
|
|
assert(globalSym !== Symbol("foo"));
|
|
assert(globalSym === Symbol.for("foo"));
|
|
assert(localSym.toString() === "Symbol(foo)");
|
|
assert(globalSym.toString() === "Symbol(foo)");
|
|
|
|
assert(Symbol.for(1).description === "1");
|
|
assert(Symbol.for(true).description === "true");
|
|
assert(Symbol.for({}).description === "[object Object]");
|
|
assert(Symbol.for().description === "undefined");
|
|
assert(Symbol.for(null).description === "null");
|
|
|
|
assertThrowsError(() => {
|
|
Symbol.for(Symbol());
|
|
}, {
|
|
error: TypeError,
|
|
message: "Can't convert symbol to string",
|
|
});
|
|
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|