1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
=== tests/cases/compiler/es6modulekindWithES5Target6.ts ===
export function f1(d = 0) {
>f1 : Symbol(f1, Decl(es6modulekindWithES5Target6.ts, 0, 0))
>d : Symbol(d, Decl(es6modulekindWithES5Target6.ts, 1, 19))
}
export function f2(...arg) {
>f2 : Symbol(f2, Decl(es6modulekindWithES5Target6.ts, 2, 1))
>arg : Symbol(arg, Decl(es6modulekindWithES5Target6.ts, 4, 19))
}
export default function f3(d = 0) {
>f3 : Symbol(f3, Decl(es6modulekindWithES5Target6.ts, 5, 1))
>d : Symbol(d, Decl(es6modulekindWithES5Target6.ts, 7, 27))
}
|