LibJS: Add String.prototype.toString()

This commit is contained in:
Linus Groh 2020-04-10 14:23:01 +01:00 committed by Andreas Kling
parent 6f3ea75569
commit 32c27afdf0
Notes: sideshowbarker 2024-07-19 07:44:38 +09:00
3 changed files with 22 additions and 5 deletions

View file

@ -48,6 +48,7 @@ StringPrototype::StringPrototype()
put_native_function("indexOf", index_of, 1);
put_native_function("toLowerCase", to_lowercase, 0);
put_native_function("toUpperCase", to_uppercase, 0);
put_native_function("toString", to_string, 0);
}
StringPrototype::~StringPrototype()
@ -167,12 +168,18 @@ Value StringPrototype::to_uppercase(Interpreter& interpreter)
Value StringPrototype::length_getter(Interpreter& interpreter)
{
auto* this_object = interpreter.this_value().to_object(interpreter.heap());
if (!this_object)
auto* string_object = string_object_from(interpreter);
if (!string_object)
return {};
if (!this_object->is_string_object())
return interpreter.throw_exception<TypeError>("Not a String object");
return Value((i32) static_cast<const StringObject*>(this_object)->primitive_string()->string().length());
return Value((i32) string_object->primitive_string()->string().length());
}
Value StringPrototype::to_string(Interpreter& interpreter)
{
auto* string_object = string_object_from(interpreter);
if (!string_object)
return {};
return js_string(interpreter, string_object->primitive_string()->string());
}
}

View file

@ -44,6 +44,7 @@ private:
static Value index_of(Interpreter&);
static Value to_lowercase(Interpreter&);
static Value to_uppercase(Interpreter&);
static Value to_string(Interpreter&);
static Value length_getter(Interpreter&);
};

View file

@ -0,0 +1,9 @@
try {
assert(String.prototype.toString.length === 0)
assert("".toString() === "");
assert("hello friends".toString() === "hello friends");
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}