File: es6modulekindWithES5Target6.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (2)
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))
}