mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:57:35 +00: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
40 changed files with 59 additions and 57 deletions
|
@ -28,7 +28,7 @@ void MapConstructor::initialize(GlobalObject& global_object)
|
|||
|
||||
define_property(vm.names.length, Value(0), 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);
|
||||
}
|
||||
|
||||
MapConstructor::~MapConstructor()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue