diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-23 12:39:23 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-23 16:05:59 +0000 |
commit | e6331031c4cab0c29dfe6b4ae52940100eb11ff2 (patch) | |
tree | 2a98e599b05bfb5bbc987f3d98cd39801c4a2421 /Userland/Libraries/LibJS/Script.cpp | |
parent | e0916dbb359d6181290daf1748fe5dce85015be1 (diff) | |
download | serenity-e6331031c4cab0c29dfe6b4ae52940100eb11ff2.zip |
LibJS: Make Parser::Error a standalone ParserError class
This allows us to forward declare it and reduce the number of things
that need to include Parser.h.
Diffstat (limited to 'Userland/Libraries/LibJS/Script.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Script.cpp b/Userland/Libraries/LibJS/Script.cpp index 36f63acab5..80bb3193ce 100644 --- a/Userland/Libraries/LibJS/Script.cpp +++ b/Userland/Libraries/LibJS/Script.cpp @@ -13,7 +13,7 @@ namespace JS { // 16.1.5 ParseScript ( sourceText, realm, hostDefined ), https://tc39.es/ecma262/#sec-parse-script -Result<NonnullGCPtr<Script>, Vector<Parser::Error>> Script::parse(StringView source_text, Realm& realm, StringView filename, HostDefined* host_defined, size_t line_number_offset) +Result<NonnullGCPtr<Script>, Vector<ParserError>> Script::parse(StringView source_text, Realm& realm, StringView filename, HostDefined* host_defined, size_t line_number_offset) { // 1. Let script be ParseText(sourceText, Script). auto parser = Parser(Lexer(source_text, filename, line_number_offset)); |