summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/StringConstructor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Runtime/StringConstructor.cpp')
-rw-r--r--Libraries/LibJS/Runtime/StringConstructor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibJS/Runtime/StringConstructor.cpp b/Libraries/LibJS/Runtime/StringConstructor.cpp
index c42731b58f..ba31d4acbb 100644
--- a/Libraries/LibJS/Runtime/StringConstructor.cpp
+++ b/Libraries/LibJS/Runtime/StringConstructor.cpp
@@ -72,7 +72,7 @@ Value StringConstructor::construct(Interpreter& interpreter)
return StringObject::create(global_object(), *primitive_string);
}
-Value StringConstructor::raw(Interpreter& interpreter)
+JS_DEFINE_NATIVE_FUNCTION(StringConstructor::raw)
{
auto* template_object = interpreter.argument(0).to_object(interpreter);
if (interpreter.exception())
@@ -111,7 +111,7 @@ Value StringConstructor::raw(Interpreter& interpreter)
return js_string(interpreter, builder.build());
}
-Value StringConstructor::from_char_code(Interpreter& interpreter)
+JS_DEFINE_NATIVE_FUNCTION(StringConstructor::from_char_code)
{
StringBuilder builder;
for (size_t i = 0; i < interpreter.argument_count(); ++i) {