mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
LibJS: Change PropertyName(Symbol*) => PropertyName(Symbol&)
Requires a bunch of find-and-replace updates across LibJS, but constructing a PropertyName from a nullptr Symbol* should not be possible - let's enforce this at the compiler level instead of using VERIFY() (and already dereference Symbol pointers at the call site).
This commit is contained in:
parent
3d5340d033
commit
f4867572b7
Notes:
sideshowbarker
2024-07-18 11:30:34 +09:00
Author: https://github.com/linusg
Commit: f4867572b7
Pull-request: https://github.com/SerenityOS/serenity/pull/8247
Reviewed-by: https://github.com/IdanHo ✅
Reviewed-by: https://github.com/alimpfard ✅
Reviewed-by: https://github.com/awesomekling ✅
40 changed files with 59 additions and 57 deletions
|
@ -26,7 +26,7 @@ void RegExpConstructor::initialize(GlobalObject& global_object)
|
|||
|
||||
define_property(vm.names.length, Value(2), Attribute::Configurable);
|
||||
|
||||
define_native_accessor(vm.well_known_symbol_species(), symbol_species_getter, {}, Attribute::Configurable);
|
||||
define_native_accessor(*vm.well_known_symbol_species(), symbol_species_getter, {}, Attribute::Configurable);
|
||||
}
|
||||
|
||||
RegExpConstructor::~RegExpConstructor()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue