Skip to content

Commit eced8fc

Browse files
authored
update baselines (microsoft#58849)
1 parent 97f3f0c commit eced8fc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/baselines/reference/override21.types

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,26 @@
33
=== override21.ts ===
44
const foo = Symbol();
55
>foo : unique symbol
6+
> : ^^^^^^^^^^^^^
67
>Symbol() : unique symbol
8+
> : ^^^^^^^^^^^^^
79
>Symbol : SymbolConstructor
10+
> : ^^^^^^^^^^^^^^^^^
811

912
class A { }
1013
>A : A
14+
> : ^
1115

1216
class B extends A {
1317
>B : B
18+
> : ^
1419
>A : A
20+
> : ^
1521

1622
override [foo]() { }
1723
>[foo] : () => void
24+
> : ^^^^^^^^^^
1825
>foo : unique symbol
26+
> : ^^^^^^^^^^^^^
1927
}
2028

0 commit comments

Comments
 (0)