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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
=== tests/cases/compiler/declFileFunctions_0.ts ===
/** This comment should appear for foo*/
export function foo() {
>foo : () => void
}
/** This is comment for function signature*/
export function fooWithParameters(/** this is comment about a*/a: string,
>fooWithParameters : (a: string, b: number) => void
>a : string
/** this is comment for b*/
b: number) {
>b : number
var d = a;
>d : string
>a : string
}
export function fooWithRestParameters(a: string, ...rests: string[]) {
>fooWithRestParameters : (a: string, ...rests: string[]) => string
>a : string
>rests : string[]
return a + rests.join("");
>a + rests.join("") : string
>a : string
>rests.join("") : string
>rests.join : (separator?: string) => string
>rests : string[]
>join : (separator?: string) => string
>"" : ""
}
export function fooWithOverloads(a: string): string;
>fooWithOverloads : { (a: string): string; (a: number): number; }
>a : string
export function fooWithOverloads(a: number): number;
>fooWithOverloads : { (a: string): string; (a: number): number; }
>a : number
export function fooWithOverloads(a: any): any {
>fooWithOverloads : { (a: string): string; (a: number): number; }
>a : any
return a;
>a : any
}
export function fooWithSingleOverload(a: string): string;
>fooWithSingleOverload : (a: string) => string
>a : string
export function fooWithSingleOverload(a: any) {
>fooWithSingleOverload : (a: string) => string
>a : any
return a;
>a : any
}
export function fooWithTypePredicate(a: any): a is number {
>fooWithTypePredicate : (a: any) => a is number
>a : any
return true;
>true : true
}
export function fooWithTypePredicateAndMulitpleParams(a: any, b: any, c: any): a is number {
>fooWithTypePredicateAndMulitpleParams : (a: any, b: any, c: any) => a is number
>a : any
>b : any
>c : any
return true;
>true : true
}
export function fooWithTypeTypePredicateAndGeneric<T>(a: any): a is T {
>fooWithTypeTypePredicateAndGeneric : <T>(a: any) => a is T
>a : any
return true;
>true : true
}
export function fooWithTypeTypePredicateAndRestParam(a: any, ...rest): a is number {
>fooWithTypeTypePredicateAndRestParam : (a: any, ...rest: any[]) => a is number
>a : any
>rest : any[]
return true;
>true : true
}
/** This comment should appear for nonExportedFoo*/
function nonExportedFoo() {
>nonExportedFoo : () => void
}
/** This is comment for function signature*/
function nonExportedFooWithParameters(/** this is comment about a*/a: string,
>nonExportedFooWithParameters : (a: string, b: number) => void
>a : string
/** this is comment for b*/
b: number) {
>b : number
var d = a;
>d : string
>a : string
}
function nonExportedFooWithRestParameters(a: string, ...rests: string[]) {
>nonExportedFooWithRestParameters : (a: string, ...rests: string[]) => string
>a : string
>rests : string[]
return a + rests.join("");
>a + rests.join("") : string
>a : string
>rests.join("") : string
>rests.join : (separator?: string) => string
>rests : string[]
>join : (separator?: string) => string
>"" : ""
}
function nonExportedFooWithOverloads(a: string): string;
>nonExportedFooWithOverloads : { (a: string): string; (a: number): number; }
>a : string
function nonExportedFooWithOverloads(a: number): number;
>nonExportedFooWithOverloads : { (a: string): string; (a: number): number; }
>a : number
function nonExportedFooWithOverloads(a: any): any {
>nonExportedFooWithOverloads : { (a: string): string; (a: number): number; }
>a : any
return a;
>a : any
}
=== tests/cases/compiler/declFileFunctions_1.ts ===
/** This comment should appear for foo*/
function globalfoo() {
>globalfoo : () => void
}
/** This is comment for function signature*/
function globalfooWithParameters(/** this is comment about a*/a: string,
>globalfooWithParameters : (a: string, b: number) => void
>a : string
/** this is comment for b*/
b: number) {
>b : number
var d = a;
>d : string
>a : string
}
function globalfooWithRestParameters(a: string, ...rests: string[]) {
>globalfooWithRestParameters : (a: string, ...rests: string[]) => string
>a : string
>rests : string[]
return a + rests.join("");
>a + rests.join("") : string
>a : string
>rests.join("") : string
>rests.join : (separator?: string) => string
>rests : string[]
>join : (separator?: string) => string
>"" : ""
}
function globalfooWithOverloads(a: string): string;
>globalfooWithOverloads : { (a: string): string; (a: number): number; }
>a : string
function globalfooWithOverloads(a: number): number;
>globalfooWithOverloads : { (a: string): string; (a: number): number; }
>a : number
function globalfooWithOverloads(a: any): any {
>globalfooWithOverloads : { (a: string): string; (a: number): number; }
>a : any
return a;
>a : any
}
|