File: es6modulekindWithES5Target9.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 (27 lines) | stat: -rw-r--r-- 760 bytes parent folder | download | duplicates (5)
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
=== tests/cases/conformance/externalModules/es6/es6modulekindWithES5Target9.ts ===
import d from "mod";
>d : Symbol(d, Decl(es6modulekindWithES5Target9.ts, 0, 6))

import {a} from "mod";
>a : Symbol(a, Decl(es6modulekindWithES5Target9.ts, 2, 8))

import * as M from "mod";
>M : Symbol(M, Decl(es6modulekindWithES5Target9.ts, 4, 6))

export {a};
>a : Symbol(a, Decl(es6modulekindWithES5Target9.ts, 6, 8))

export {M};
>M : Symbol(M, Decl(es6modulekindWithES5Target9.ts, 8, 8))

export {d};
>d : Symbol(d, Decl(es6modulekindWithES5Target9.ts, 10, 8))

export * from "mod";

export {b} from "mod"
>b : Symbol(b, Decl(es6modulekindWithES5Target9.ts, 14, 8))

export default d;
>d : Symbol(d, Decl(es6modulekindWithES5Target9.ts, 0, 6))