1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibJS: Convert GeneratorObject.prototype to be a PrototypeObject

The added #include in GeneratorObject.h is to resolve usage of
Bytecode::RegisterWindow.
This commit is contained in:
Timothy Flynn 2021-09-11 16:23:42 -04:00 committed by Andreas Kling
parent 43e4cec3e2
commit 9e57ea71af
3 changed files with 10 additions and 20 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <LibJS/Bytecode/Interpreter.h>
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/OrdinaryFunctionObject.h>