mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 09:36:08 +00:00
LibJS: Move ConsoleObject construction from GlobalObject to Intrinsics
This will allow us to move the underlying console from GlobalObject to ConsoleObject without still having to do a 'console' property lookup on the GlobalObject.
This commit is contained in:
parent
d35f53c344
commit
78eca3ae64
Notes:
sideshowbarker
2024-07-17 07:39:51 +09:00
Author: https://github.com/linusg
Commit: 78eca3ae64
Pull-request: https://github.com/SerenityOS/serenity/pull/15057
3 changed files with 4 additions and 1 deletions
|
@ -95,6 +95,7 @@
|
|||
|
||||
#define JS_ENUMERATE_BUILTIN_NAMESPACE_OBJECTS \
|
||||
__JS_ENUMERATE(AtomicsObject, atomics) \
|
||||
__JS_ENUMERATE(ConsoleObject, console) \
|
||||
__JS_ENUMERATE(Intl::Intl, intl) \
|
||||
__JS_ENUMERATE(JSONObject, json) \
|
||||
__JS_ENUMERATE(MathObject, math) \
|
||||
|
@ -216,6 +217,7 @@ class TypedArrayConstructor;
|
|||
class TypedArrayPrototype;
|
||||
|
||||
class AtomicsObject;
|
||||
class ConsoleObject;
|
||||
class JSONObject;
|
||||
class MathObject;
|
||||
class ReflectObject;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue