From 4b39e718b32a03929c5d709390317fc374e5c262 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Fri, 16 Jul 2021 14:55:19 +0300 Subject: [PATCH] LibJS: Remove unused Object::PutOwnPropertyMode enum class All usages of this enum class were removed in the Object rewrite, but this enum was left behind. --- Userland/Libraries/LibJS/Runtime/Object.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/Object.h b/Userland/Libraries/LibJS/Runtime/Object.h index 1bd7428146..58222b4c70 100644 --- a/Userland/Libraries/LibJS/Runtime/Object.h +++ b/Userland/Libraries/LibJS/Runtime/Object.h @@ -41,11 +41,6 @@ public: KeyAndValue, }; - enum class PutOwnPropertyMode { - Put, - DefineProperty, - }; - enum class IntegrityLevel { Sealed, Frozen,