File: exportNonInitializedVariablesCommonJS.js

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 (68 lines) | stat: -rw-r--r-- 1,162 bytes parent folder | download
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
//// [exportNonInitializedVariablesCommonJS.ts]
var;
let;
const;

export var a;
export let b;
export var c: string;
export let d: number;
class A {}
export var e: A;
export let f: A;

namespace B {
    export let a = 1, b, c = 2;
    export let x, y, z;
}

module C {
    export var a = 1, b, c = 2;
    export var x, y, z;
}

// Shouldn't be filtered
export var a1 = 1;
export let b1 = 1;
export var c1: string = 'a';
export let d1: number = 1;
class D {}
export var e1 = new D;
export let f1 = new D;
export var g1: D = new D;
export let h1: D = new D;


//// [exportNonInitializedVariablesCommonJS.js]
"use strict";
exports.__esModule = true;
var ;
let;
var ;
var A = /** @class */ (function () {
    function A() {
    }
    return A;
}());
var B;
(function (B) {
    B.a = 1, B.c = 2;
})(B || (B = {}));
var C;
(function (C) {
    C.a = 1, C.c = 2;
})(C || (C = {}));
// Shouldn't be filtered
exports.a1 = 1;
exports.b1 = 1;
exports.c1 = 'a';
exports.d1 = 1;
var D = /** @class */ (function () {
    function D() {
    }
    return D;
}());
exports.e1 = new D;
exports.f1 = new D;
exports.g1 = new D;
exports.h1 = new D;