tslint-clean-code
Version:
TSLint rules for enforcing Clean Code
25 lines • 654 B
JavaScript
var SampleSwitch3 = (function () {
function SampleSwitch3() {
}
return SampleSwitch3;
}());
var SampleSwitch4 = (function () {
function SampleSwitch4() {
}
Object.defineProperty(SampleSwitch4.prototype, "switch", {
get: function () {
return this.var;
},
set: function (value) { },
enumerable: true,
configurable: true
});
return SampleSwitch4;
}());
var SampleSwitch5 = (function () {
function SampleSwitch5() {
}
SampleSwitch5.prototype.switch = function () { };
return SampleSwitch5;
}());
//# sourceMappingURL=NoReservedKeywordsTestInput-switch.js.map