mirror of
https://github.com/tc39/test262.git
synced 2025-07-26 15:34:29 +02:00
Fix typo from optional chaining test (#2287)
This commit is contained in:
parent
70a07985a5
commit
1da297e305
@ -75,7 +75,7 @@ class B extends A {
|
|||||||
return super.a?.name;
|
return super.a?.name;
|
||||||
}
|
}
|
||||||
expr () {
|
expr () {
|
||||||
return super['a'].name;
|
return super['a']?.name;
|
||||||
}
|
}
|
||||||
undf2 () {
|
undf2 () {
|
||||||
return super.b?.c;
|
return super.b?.c;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user