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,19 @@
class ClassDecorator {
final dynamic value;
const ClassDecorator(this.value);
}
class ParamDecorator {
final dynamic value;
const ParamDecorator(this.value);
}
ClassDecorator classDecorator(value) {
return new ClassDecorator(value);
}
ParamDecorator paramDecorator(value) {
return new ParamDecorator(value);
}