mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 15:57:36 +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:
parent
4270ede7c4
commit
edfef8e2f5
14 changed files with 219 additions and 219 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue