We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97f3f0c commit eced8fcCopy full SHA for eced8fc
tests/baselines/reference/override21.types
@@ -3,18 +3,26 @@
3
=== override21.ts ===
4
const foo = Symbol();
5
>foo : unique symbol
6
+> : ^^^^^^^^^^^^^
7
>Symbol() : unique symbol
8
9
>Symbol : SymbolConstructor
10
+> : ^^^^^^^^^^^^^^^^^
11
12
class A { }
13
>A : A
14
+> : ^
15
16
class B extends A {
17
>B : B
18
19
20
21
22
override [foo]() { }
23
>[foo] : () => void
24
+> : ^^^^^^^^^^
25
26
27
}
28
0 commit comments