File: emitArrowFunctionAsIsES6.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (14 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIsES6.ts ===
var arrow1 =  a => { };
>arrow1 : Symbol(arrow1, Decl(emitArrowFunctionAsIsES6.ts, 0, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIsES6.ts, 0, 12))

var arrow2 = (a) => { };
>arrow2 : Symbol(arrow2, Decl(emitArrowFunctionAsIsES6.ts, 1, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIsES6.ts, 1, 14))

var arrow3 = (a, b) => { };
>arrow3 : Symbol(arrow3, Decl(emitArrowFunctionAsIsES6.ts, 3, 3))
>a : Symbol(a, Decl(emitArrowFunctionAsIsES6.ts, 3, 14))
>b : Symbol(b, Decl(emitArrowFunctionAsIsES6.ts, 3, 16))