LibJS+LibWeb: Move IteratorOperations.h AOs to Iterator.h

Rather than splitting the Iterator type and its AOs into two files,
let's combine them into one file to match every other JS runtime object
that we have.
This commit is contained in:
Timothy Flynn 2023-07-19 06:54:48 -04:00 committed by Linus Groh
commit 9d7215c636
Notes: sideshowbarker 2024-07-17 03:00:02 +09:00
46 changed files with 307 additions and 340 deletions

View file

@ -10,7 +10,7 @@
#include <LibJS/Runtime/GeneratorObject.h>
#include <LibJS/Runtime/GeneratorPrototype.h>
#include <LibJS/Runtime/GlobalObject.h>
#include <LibJS/Runtime/IteratorOperations.h>
#include <LibJS/Runtime/Iterator.h>
namespace JS {