1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

LibWeb: Add New as a possible enum variant of ModuleStatus

This commit is contained in:
networkException 2023-10-28 23:41:47 +02:00 committed by Andreas Kling
parent 89ea444967
commit 7c7ca7f230

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2022, David Tuin <davidot@serenityos.org>
* Copyright (c) 2023, networkException <networkexception@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -12,6 +13,7 @@
namespace JS {
enum class ModuleStatus {
New,
Unlinked,
Linking,
Linked,