From 7c7ca7f23023ffb11ddf0ed098d02a678596b0bd Mon Sep 17 00:00:00 2001 From: networkException Date: Sat, 28 Oct 2023 23:41:47 +0200 Subject: [PATCH] LibWeb: Add New as a possible enum variant of ModuleStatus --- Userland/Libraries/LibJS/CyclicModule.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibJS/CyclicModule.h b/Userland/Libraries/LibJS/CyclicModule.h index 55ce09ffdc..813b8c16dc 100644 --- a/Userland/Libraries/LibJS/CyclicModule.h +++ b/Userland/Libraries/LibJS/CyclicModule.h @@ -1,5 +1,6 @@ /* * Copyright (c) 2022, David Tuin + * Copyright (c) 2023, networkException * * SPDX-License-Identifier: BSD-2-Clause */ @@ -12,6 +13,7 @@ namespace JS { enum class ModuleStatus { + New, Unlinked, Linking, Linked,