1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 12:47:45 +00:00

Everywhere: Rename WrapperGenerator to BindingsGenerator

This code generator no longer creates JS wrappers for platform objects
in the old sense, instead they're JS objects internally themselves.
Most of what we generate now are prototypes - which can be seen as
bindings for the internal C++ methods implementing getters, setters, and
methods - as well as object constructors, i.e. bindings for the internal
create_with_global_object() method.

Also tweak the naming of various CMake glue code existing around this.
This commit is contained in:
Linus Groh 2022-09-21 18:22:16 +01:00
parent 4270ede7c4
commit edfef8e2f5
14 changed files with 219 additions and 219 deletions

View file

@ -18,6 +18,10 @@
#cmakedefine01 BMP_DEBUG
#endif
#ifndef BINDINGS_GENERATOR_DEBUG
#cmakedefine01 BINDINGS_GENERATOR_DEBUG
#endif
#ifndef CACHE_DEBUG
#cmakedefine01 CACHE_DEBUG
#endif
@ -502,10 +506,6 @@
#cmakedefine01 WINDOWMANAGER_DEBUG
#endif
#ifndef WRAPPER_GENERATOR_DEBUG
#cmakedefine01 WRAPPER_GENERATOR_DEBUG
#endif
#ifndef WSMESSAGELOOP_DEBUG
#cmakedefine01 WSMESSAGELOOP_DEBUG
#endif