mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-01 12:00:27 +00:00
LibJS: Fix accidental west-const in ArgumentsObject
This commit is contained in:
parent
77fa33e61a
commit
a0acb6f058
Notes:
sideshowbarker
2024-07-18 10:25:07 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a0acb6f058c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ void ArgumentsObject::visit_edges(Cell::Visitor& visitor)
|
|||
}
|
||||
|
||||
// 10.4.4.3 [[Get]] ( P, Receiver ), https://tc39.es/ecma262/#sec-arguments-exotic-objects-get-p-receiver
|
||||
Value ArgumentsObject::internal_get(const PropertyName& property_name, Value receiver) const
|
||||
Value ArgumentsObject::internal_get(PropertyName const& property_name, Value receiver) const
|
||||
{
|
||||
// 1. Let map be args.[[ParameterMap]].
|
||||
auto& map = *m_parameter_map;
|
||||
|
|
Loading…
Reference in a new issue