chore(reflection): tsfy tests

This commit is contained in:
vsavkin
2015-05-22 16:20:46 -07:00
parent d48fae3566
commit d27e5512c0
3 changed files with 69 additions and 55 deletions

View File

@ -0,0 +1,24 @@
import {makeDecorator, makeParamDecorator} from 'angular2/src/util/decorators';
export class ClassDecoratorImpl {
value;
constructor(value) { this.value = value; }
}
export class ParamDecoratorImpl {
value;
constructor(value) { this.value = value; }
}
export function classDecorator(value) {
return new ClassDecoratorImpl(value);
}
export function paramDecorator(value) {
return new ParamDecoratorImpl(value);
}
export var ClassDecorator = makeDecorator(ClassDecoratorImpl);
export var ParamDecorator = makeParamDecorator(ParamDecoratorImpl);