//// [sourceMapValidationDecorators.ts] declare function ClassDecorator1(target: Function): void; declare function ClassDecorator2(x: number): (target: Function) => void; declare function PropertyDecorator1(target: Object, key: string | symbol, descriptor?: PropertyDescriptor): void; declare function PropertyDecorator2(x: number): (target: Object, key: string | symbol, descriptor?: PropertyDescriptor) => void; declare function ParameterDecorator1(target: Function, key: string | symbol, paramIndex: number): void; declare function ParameterDecorator2(x: number): (target: Function, key: string | symbol, paramIndex: number) => void; @ClassDecorator1 @ClassDecorator2(10) class Greeter { constructor( @ParameterDecorator1 @ParameterDecorator2(20) public greeting: string, @ParameterDecorator1 @ParameterDecorator2(30) ...b: string[]) { } @PropertyDecorator1 @PropertyDecorator2(40) greet() { return "

" + this.greeting + "

"; } @PropertyDecorator1 @PropertyDecorator2(50) private x: string; @PropertyDecorator1 @PropertyDecorator2(60) private static x1: number = 10; private fn( @ParameterDecorator1 @ParameterDecorator2(70) x: number) { return this.greeting; } @PropertyDecorator1 @PropertyDecorator2(80) get greetings() { return this.greeting; } set greetings( @ParameterDecorator1 @ParameterDecorator2(90) greetings: string) { this.greeting = greetings; } } //// [sourceMapValidationDecorators.js] var __decorate = this.__decorate || (typeof Reflect === "object" && Reflect.decorate) || function (decorators, target, key, desc) { switch (arguments.length) { case 2: return decorators.reduceRight(function(o, d) { return (d && d(o)) || o; }, target); case 3: return decorators.reduceRight(function(o, d) { return (d && d(target, key)), void 0; }, void 0); case 4: return decorators.reduceRight(function(o, d) { return (d && d(target, key, o)) || o; }, desc); } }; var __param = this.__param || function(index, decorator) { return function (target, key) { decorator(target, key, index); } }; var Greeter = (function () { function Greeter(greeting) { var b = []; for (var _i = 1; _i < arguments.length; _i++) { b[_i - 1] = arguments[_i]; } this.greeting = greeting; } Greeter.prototype.greet = function () { return "

" + this.greeting + "

"; }; Greeter.prototype.fn = function (x) { return this.greeting; }; Object.defineProperty(Greeter.prototype, "greetings", { get: function () { return this.greeting; }, set: function (greetings) { this.greeting = greetings; }, enumerable: true, configurable: true }); Greeter.x1 = 10; Object.defineProperty(Greeter.prototype, "greet", __decorate([ PropertyDecorator1, PropertyDecorator2(40) ], Greeter.prototype, "greet", Object.getOwnPropertyDescriptor(Greeter.prototype, "greet"))); __decorate([ PropertyDecorator1, PropertyDecorator2(50) ], Greeter.prototype, "x"); Object.defineProperty(Greeter.prototype, "fn", __decorate([ __param(0, ParameterDecorator1), __param(0, ParameterDecorator2(70)) ], Greeter.prototype, "fn", Object.getOwnPropertyDescriptor(Greeter.prototype, "fn"))); Object.defineProperty(Greeter.prototype, "greetings", __decorate([ PropertyDecorator1, PropertyDecorator2(80), __param(0, ParameterDecorator1), __param(0, ParameterDecorator2(90)) ], Greeter.prototype, "greetings", Object.getOwnPropertyDescriptor(Greeter.prototype, "greetings"))); __decorate([ PropertyDecorator1, PropertyDecorator2(60) ], Greeter, "x1"); Greeter = __decorate([ ClassDecorator1, ClassDecorator2(10), __param(0, ParameterDecorator1), __param(0, ParameterDecorator2(20)), __param(1, ParameterDecorator1), __param(1, ParameterDecorator2(30)) ], Greeter); return Greeter; })(); //# sourceMappingURL=sourceMapValidationDecorators.js.map