diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/ArrayConstructor.h')
-rw-r--r-- | Libraries/LibJS/Runtime/ArrayConstructor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibJS/Runtime/ArrayConstructor.h b/Libraries/LibJS/Runtime/ArrayConstructor.h index a038d080e4..14e5f30665 100644 --- a/Libraries/LibJS/Runtime/ArrayConstructor.h +++ b/Libraries/LibJS/Runtime/ArrayConstructor.h @@ -43,6 +43,7 @@ private: virtual const char* class_name() const override { return "ArrayConstructor"; } static Value is_array(Interpreter&); + static Value of(Interpreter&); }; } |