1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:57:45 +00:00

LibJS: Add fast_is<ArrayIterator>()

This commit is contained in:
Andreas Kling 2023-12-08 12:37:40 +01:00
parent 73ceb475b9
commit 373ec387c1
2 changed files with 5 additions and 0 deletions

View file

@ -191,6 +191,7 @@ public:
virtual bool is_native_function() const { return false; }
virtual bool is_ecmascript_function_object() const { return false; }
virtual bool is_iterator_record() const { return false; }
virtual bool is_array_iterator() const { return false; }
// B.3.7 The [[IsHTMLDDA]] Internal Slot, https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
virtual bool is_htmldda() const { return false; }