update baselines (#58849)

This commit is contained in:
Isabel Duan 2024-06-12 19:20:57 -07:00 committed by GitHub
parent 97f3f0c8dd
commit eced8fc263
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,18 +3,26 @@
=== override21.ts ===
const foo = Symbol();
>foo : unique symbol
> : ^^^^^^^^^^^^^
>Symbol() : unique symbol
> : ^^^^^^^^^^^^^
>Symbol : SymbolConstructor
> : ^^^^^^^^^^^^^^^^^
class A { }
>A : A
> : ^
class B extends A {
>B : B
> : ^
>A : A
> : ^
override [foo]() { }
>[foo] : () => void
> : ^^^^^^^^^^
>foo : unique symbol
> : ^^^^^^^^^^^^^
}