TypeScript/tests/baselines/reference/decoratorOnClassProperty11.js
2015-03-24 17:00:29 -07:00

27 lines
895 B
TypeScript

//// [decoratorOnClassProperty11.ts]
declare function dec(): <T>(target: any, propertyKey: string) => void;
class C {
@dec prop;
}
//// [decoratorOnClassProperty11.js]
var __decorate = this.__decorate || function (decorators, target, key, value) {
var kind = typeof (arguments.length == 2 ? value = target : value);
for (var i = decorators.length - 1; i >= 0; --i) {
var decorator = decorators[i];
switch (kind) {
case "function": value = decorator(value) || value; break;
case "number": decorator(target, key, value); break;
case "undefined": decorator(target, key); break;
case "object": value = decorator(target, key, value) || value; break;
}
}
return value;
};
var C = (function () {
function C() {
}
__decorate([dec], C.prototype, "prop");
return C;
})();