mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-04-17 01:49:41 -05:00
Remove TODO from test now that it's done
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
//// [typeofUsedBeforeBlockScoped.ts]
|
||||
// TODO: Change name of file to typeofUsedBeforeBlockScoped.ts
|
||||
type T = typeof C & typeof C.s & typeof o & typeof o.n;
|
||||
class C {
|
||||
static s = 2;
|
||||
|
||||
@@ -1,33 +1,32 @@
|
||||
=== tests/cases/compiler/typeofUsedBeforeBlockScoped.ts ===
|
||||
// TODO: Change name of file to typeofUsedBeforeBlockScoped.ts
|
||||
type T = typeof C & typeof C.s & typeof o & typeof o.n;
|
||||
>T : Symbol(T, Decl(typeofUsedBeforeBlockScoped.ts, 0, 0))
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 1, 55))
|
||||
>C.s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 2, 9))
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 1, 55))
|
||||
>s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 2, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 7, 3))
|
||||
>o.n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 7, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 7, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 7, 9))
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 0, 55))
|
||||
>C.s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 1, 9))
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 0, 55))
|
||||
>s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 1, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
>o.n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 6, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 6, 9))
|
||||
|
||||
class C {
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 1, 55))
|
||||
>C : Symbol(C, Decl(typeofUsedBeforeBlockScoped.ts, 0, 55))
|
||||
|
||||
static s = 2;
|
||||
>s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 2, 9))
|
||||
>s : Symbol(C.s, Decl(typeofUsedBeforeBlockScoped.ts, 1, 9))
|
||||
}
|
||||
type W = typeof o.n;
|
||||
>W : Symbol(W, Decl(typeofUsedBeforeBlockScoped.ts, 4, 1))
|
||||
>o.n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 7, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 7, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 7, 9))
|
||||
>W : Symbol(W, Decl(typeofUsedBeforeBlockScoped.ts, 3, 1))
|
||||
>o.n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 6, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 6, 9))
|
||||
|
||||
let o2: typeof o;
|
||||
>o2 : Symbol(o2, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 7, 3))
|
||||
>o2 : Symbol(o2, Decl(typeofUsedBeforeBlockScoped.ts, 5, 3))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
|
||||
let o = { n: 12 };
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 7, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 7, 9))
|
||||
>o : Symbol(o, Decl(typeofUsedBeforeBlockScoped.ts, 6, 3))
|
||||
>n : Symbol(n, Decl(typeofUsedBeforeBlockScoped.ts, 6, 9))
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
=== tests/cases/compiler/typeofUsedBeforeBlockScoped.ts ===
|
||||
// TODO: Change name of file to typeofUsedBeforeBlockScoped.ts
|
||||
type T = typeof C & typeof C.s & typeof o & typeof o.n;
|
||||
>T : T
|
||||
>C : typeof C
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
// TODO: Change name of file to typeofUsedBeforeBlockScoped.ts
|
||||
type T = typeof C & typeof C.s & typeof o & typeof o.n;
|
||||
class C {
|
||||
static s = 2;
|
||||
|
||||
Reference in New Issue
Block a user