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 73
|
//// [parserErrantSemicolonInClass1.ts]
class a {
//constructor ();
constructor (n: number);
constructor (s: string);
constructor (ns: any) {
}
public pgF() { };
public pv;
public get d() {
return 30;
}
public set d() {
}
public static get p2() {
return { x: 30, y: 40 };
}
private static d2() {
}
private static get p3() {
return "string";
}
private pv3;
private foo(n: number): string;
private foo(s: string): string;
private foo(ns: any) {
return ns.toString();
}
}
//// [parserErrantSemicolonInClass1.js]
var a = /** @class */ (function () {
function a(ns) {
}
a.prototype.pgF = function () { };
;
Object.defineProperty(a.prototype, "d", {
get: function () {
return 30;
},
set: function () {
},
enumerable: true,
configurable: true
});
Object.defineProperty(a, "p2", {
get: function () {
return { x: 30, y: 40 };
},
enumerable: true,
configurable: true
});
a.d2 = function () {
};
Object.defineProperty(a, "p3", {
get: function () {
return "string";
},
enumerable: true,
configurable: true
});
a.prototype.foo = function (ns) {
return ns.toString();
};
return a;
}());
|