diff options
author | Linus Groh <mail@linusgroh.de> | 2022-07-06 14:12:51 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-06 14:12:51 +0200 |
commit | 1f5cef13197c05467e24304538cb17759640a173 (patch) | |
tree | fc6b6def475412ef4ade4a1f907af7082afbb49e /Userland/Libraries/LibJS/AST.cpp | |
parent | eae8520dbbdce04bede469aa9fd0783c3d675cec (diff) | |
download | serenity-1f5cef13197c05467e24304538cb17759640a173.zip |
LibJS: Make AST.cpp compile with -O0
Diffstat (limited to 'Userland/Libraries/LibJS/AST.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/AST.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/AST.cpp b/Userland/Libraries/LibJS/AST.cpp index d2c5add02d..fb87f6d437 100644 --- a/Userland/Libraries/LibJS/AST.cpp +++ b/Userland/Libraries/LibJS/AST.cpp @@ -4092,6 +4092,7 @@ Completion DebuggerStatement::execute(Interpreter& interpreter, GlobalObject&) c if (false) { // a. Perform an implementation-defined debugging action. // b. Return a new implementation-defined Completion Record. + VERIFY_NOT_REACHED(); } // 2. Else, else { |