File: getAndSetAsMemberNames.js

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 (61 lines) | stat: -rw-r--r-- 1,107 bytes parent folder | download | duplicates (2)
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
//// [getAndSetAsMemberNames.ts]
class C1 {
    set: boolean;
    get = 1;
}
class C2 {
    set;
}
class C3 {
    set (x) {
        return x + 1;
    }
}
class C4 {
    get: boolean = true;
}
class C5 {
    public set: () => boolean = function () { return true; };
    get (): boolean { return true; }
    set t(x) { }
}


//// [getAndSetAsMemberNames.js]
var C1 = (function () {
    function C1() {
        this.get = 1;
    }
    return C1;
}());
var C2 = (function () {
    function C2() {
    }
    return C2;
}());
var C3 = (function () {
    function C3() {
    }
    C3.prototype.set = function (x) {
        return x + 1;
    };
    return C3;
}());
var C4 = (function () {
    function C4() {
        this.get = true;
    }
    return C4;
}());
var C5 = (function () {
    function C5() {
        this.set = function () { return true; };
    }
    C5.prototype.get = function () { return true; };
    Object.defineProperty(C5.prototype, "t", {
        set: function (x) { },
        enumerable: true,
        configurable: true
    });
    return C5;
}());