From 1f5cef13197c05467e24304538cb17759640a173 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 6 Jul 2022 14:12:51 +0200 Subject: [PATCH] LibJS: Make AST.cpp compile with -O0 --- Userland/Libraries/LibJS/AST.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibJS/AST.cpp b/Userland/Libraries/LibJS/AST.cpp index d2c5add02dd..fb87f6d4373 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 {