mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:57:35 +00:00
LibJS: Rename m_global_symbol_map to m_global_symbol_registry
The spec calls it "GlobalSymbolRegistry".
This commit is contained in:
parent
112b3f7342
commit
2c579ed0df
2 changed files with 5 additions and 4 deletions
|
@ -264,7 +264,8 @@ private:
|
|||
|
||||
StackInfo m_stack_info;
|
||||
|
||||
HashMap<DeprecatedString, Symbol*> m_global_symbol_map;
|
||||
// GlobalSymbolRegistry, https://tc39.es/ecma262/#table-globalsymbolregistry-record-fields
|
||||
HashMap<DeprecatedString, Symbol*> m_global_symbol_registry;
|
||||
|
||||
Vector<Function<ThrowCompletionOr<Value>()>> m_promise_jobs;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue