1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:28:11 +00:00

LibJS: Store NonnullGCPtr<Symbol> values in m_global_symbol_registry

This commit is contained in:
Linus Groh 2022-12-06 20:59:37 +00:00
parent 2c579ed0df
commit d5457375e6
2 changed files with 3 additions and 3 deletions

View file

@ -265,7 +265,7 @@ private:
StackInfo m_stack_info;
// GlobalSymbolRegistry, https://tc39.es/ecma262/#table-globalsymbolregistry-record-fields
HashMap<DeprecatedString, Symbol*> m_global_symbol_registry;
HashMap<DeprecatedString, NonnullGCPtr<Symbol>> m_global_symbol_registry;
Vector<Function<ThrowCompletionOr<Value>()>> m_promise_jobs;