mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibJS: Remove bogus FIXME in ArgumentsObject::internal_get()
Not sure what happened here, but the comment does not match the spec, and so the FIXME I added is not actually an issue.
This commit is contained in:
parent
f3768705a9
commit
50d0f879f7
Notes:
sideshowbarker
2024-07-17 11:19:40 +09:00
1 changed files with 1 additions and 2 deletions
|
@ -41,8 +41,7 @@ ThrowCompletionOr<Value> ArgumentsObject::internal_get(PropertyKey const& proper
|
|||
|
||||
// 3. If isMapped is false, then
|
||||
if (!is_mapped) {
|
||||
// a. Return ! OrdinaryGet(args, P, Receiver).
|
||||
// FIXME: Using MUST here breaks one test in test262 (spec issue).
|
||||
// a. Return ? OrdinaryGet(args, P, Receiver).
|
||||
return Object::internal_get(property_key, receiver);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue