mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
JSSpecCompiler: Adopt more C++ terminology
Let's not use strange names like `ExecutionContext`, which nobody will understand in the future.
This commit is contained in:
parent
4578004ad6
commit
567b1f6e7c
Notes:
sideshowbarker
2024-07-16 23:13:25 +09:00
Author: https://github.com/DanShaders
Commit: 567b1f6e7c
Pull-request: https://github.com/SerenityOS/serenity/pull/21263
Reviewed-by: https://github.com/gmta ✅
9 changed files with 51 additions and 21 deletions
|
@ -456,7 +456,12 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
Variant<StringView, FunctionRef> m_function;
|
||||
FunctionPointer(FunctionDefinitionRef function_definition)
|
||||
: m_function(function_definition)
|
||||
{
|
||||
}
|
||||
|
||||
Variant<StringView, FunctionDefinitionRef> m_function;
|
||||
|
||||
protected:
|
||||
void dump_tree(StringBuilder& builder) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue