diff options
Diffstat (limited to 'Libraries/LibJS/AST.cpp')
-rw-r--r-- | Libraries/LibJS/AST.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Libraries/LibJS/AST.cpp b/Libraries/LibJS/AST.cpp index 65832acdba..f1b1cd45bb 100644 --- a/Libraries/LibJS/AST.cpp +++ b/Libraries/LibJS/AST.cpp @@ -1777,9 +1777,6 @@ Value TaggedTemplateLiteral::execute(Interpreter& interpreter, GlobalObject& glo raw_strings->indexed_properties().append(value); } strings->define_property("raw", raw_strings, 0); - if (interpreter.exception()) - return {}; - return interpreter.call(tag_function, js_undefined(), move(arguments)); } |