1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
=== tests/cases/compiler/base.d.ts ===
declare const x: "foo".charCodeAt(0);
>x : "foo"
>charCodeAt : any
>(0) : 0
>0 : 0
=== tests/cases/compiler/string.ts ===
interface String {
typeof<T>(x: T): T;
>typeof : <T>(x: T) => T
>x : T
}
class C {
>C : C
foo() {
>foo : () => void
const x: "".typeof(this.foo);
>x : ""
>typeof(this.foo) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(this.foo) : () => void
>this.foo : () => void
>this : this
>foo : () => void
}
}
const nodes = document.getElementsByTagName("li");
>nodes : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName("li") : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>document : Document
>getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>"li" : "li"
type ItemType = "".typeof(nodes.item(0));
>ItemType : ""
>typeof(nodes.item(0)) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(nodes.item(0)) : HTMLLIElement
>nodes.item(0) : HTMLLIElement
>nodes.item : (index: number) => HTMLLIElement
>nodes : HTMLCollectionOf<HTMLLIElement>
>item : (index: number) => HTMLLIElement
>0 : 0
=== tests/cases/compiler/number.ts ===
interface Number {
typeof<T>(x: T): T;
>typeof : <T>(x: T) => T
>x : T
}
class C2 {
>C2 : C2
foo() {
>foo : () => void
const x: 3.141592.typeof(this.foo);
>x : 3.141592
>typeof(this.foo) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(this.foo) : () => void
>this.foo : () => void
>this : this
>foo : () => void
}
}
const nodes2 = document.getElementsByTagName("li");
>nodes2 : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName("li") : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>document : Document
>getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>"li" : "li"
type ItemType2 = 4..typeof(nodes.item(0));
>ItemType2 : 4
>typeof(nodes.item(0)) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(nodes.item(0)) : HTMLLIElement
>nodes.item(0) : HTMLLIElement
>nodes.item : (index: number) => HTMLLIElement
>nodes : HTMLCollectionOf<HTMLLIElement>
>item : (index: number) => HTMLLIElement
>0 : 0
=== tests/cases/compiler/boolean.ts ===
interface Boolean {
typeof<T>(x: T): T;
>typeof : <T>(x: T) => T
>x : T
}
class C3 {
>C3 : C3
foo() {
>foo : () => void
const x: false.typeof(this.foo);
>x : false
>false : false
>typeof(this.foo) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(this.foo) : () => void
>this.foo : () => void
>this : this
>foo : () => void
}
}
const nodes3 = document.getElementsByTagName("li");
>nodes3 : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName("li") : HTMLCollectionOf<HTMLLIElement>
>document.getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>document : Document
>getElementsByTagName : { <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; (qualifiedName: string): HTMLCollectionOf<Element>; }
>"li" : "li"
type ItemType3 = true.typeof(nodes.item(0));
>ItemType3 : true
>true : true
>typeof(nodes.item(0)) : "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"
>(nodes.item(0)) : HTMLLIElement
>nodes.item(0) : HTMLLIElement
>nodes.item : (index: number) => HTMLLIElement
>nodes : HTMLCollectionOf<HTMLLIElement>
>item : (index: number) => HTMLLIElement
>0 : 0
|