mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 02:38:59 +00:00
LibJS: Drop "Record" suffix from all the *Environment record classes
"Records" in the spec are basically C++ classes, so let's drop this mouthful of a suffix.
This commit is contained in:
parent
56d25d7210
commit
44221756ab
Notes:
sideshowbarker
2024-07-18 11:10:31 +09:00
Author: https://github.com/awesomekling
Commit: 44221756ab
40 changed files with 366 additions and 366 deletions
|
@ -15,7 +15,7 @@
|
|||
#include <LibJS/Forward.h>
|
||||
#include <LibJS/Heap/DeferGC.h>
|
||||
#include <LibJS/Heap/Heap.h>
|
||||
#include <LibJS/Runtime/DeclarativeEnvironmentRecord.h>
|
||||
#include <LibJS/Runtime/DeclarativeEnvironment.h>
|
||||
#include <LibJS/Runtime/ErrorTypes.h>
|
||||
#include <LibJS/Runtime/Exception.h>
|
||||
#include <LibJS/Runtime/MarkedValueList.h>
|
||||
|
@ -56,9 +56,9 @@ public:
|
|||
ALWAYS_INLINE Heap& heap() { return vm().heap(); }
|
||||
ALWAYS_INLINE Exception* exception() { return vm().exception(); }
|
||||
|
||||
EnvironmentRecord* lexical_environment() { return vm().lexical_environment(); }
|
||||
Environment* lexical_environment() { return vm().lexical_environment(); }
|
||||
|
||||
FunctionEnvironmentRecord* current_function_environment_record();
|
||||
FunctionEnvironment* current_function_environment();
|
||||
|
||||
void enter_scope(const ScopeNode&, ScopeType, GlobalObject&);
|
||||
void exit_scope(const ScopeNode&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue