mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibJS: Use PropertyKey in MemberExpression::to_reference()
This commit is contained in:
parent
75f2510de9
commit
c02e992de2
Notes:
sideshowbarker
2024-07-18 01:56:31 +09:00
Author: https://github.com/awesomekling
Commit: c02e992de2
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ Reference MemberExpression::to_reference(Interpreter& interpreter, GlobalObject&
|
|||
// 2. Let actualThis be ? env.GetThisBinding().
|
||||
auto actual_this = TRY_OR_DISCARD(environment.get_this_binding(global_object));
|
||||
|
||||
StringOrSymbol property_key;
|
||||
PropertyKey property_key;
|
||||
|
||||
if (is_computed()) {
|
||||
// SuperProperty : super [ Expression ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue