File: exportNonInitializedVariablesSystem.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 (72 lines) | stat: -rw-r--r-- 1,749 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
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
69
70
71
72
//// [exportNonInitializedVariablesSystem.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;


//// [exportNonInitializedVariablesSystem.js]
System.register([], function (exports_1, context_1) {
    "use strict";
    var a, b, c, d, A, e, f, B, C, a1, b1, c1, d1, D, e1, f1, g1, h1;
    var __moduleName = context_1 && context_1.id;
    return {
        setters: [],
        execute: function () {
            let;
            A = /** @class */ (function () {
                function A() {
                }
                return A;
            }());
            (function (B) {
                B.a = 1, B.c = 2;
            })(B || (B = {}));
            (function (C) {
                C.a = 1, C.c = 2;
            })(C || (C = {}));
            // Shouldn't be filtered
            exports_1("a1", a1 = 1);
            exports_1("b1", b1 = 1);
            exports_1("c1", c1 = 'a');
            exports_1("d1", d1 = 1);
            D = /** @class */ (function () {
                function D() {
                }
                return D;
            }());
            exports_1("e1", e1 = new D);
            exports_1("f1", f1 = new D);
            exports_1("g1", g1 = new D);
            exports_1("h1", h1 = new D);
        }
    };
});