accept new test baselines

This commit is contained in:
Mohamed Hegazy
2015-04-09 14:42:29 -07:00
parent f6eb66b572
commit 666765cfaa
2 changed files with 9 additions and 9 deletions

View File

@@ -1,11 +1,11 @@
//// [decoratorOnClassMethod11.ts]
module M {
class C {
decorator(target: Object, key: string): void { }
@this.decorator
method() { }
}
module M {
class C {
decorator(target: Object, key: string): void { }
@this.decorator
method() { }
}
}
//// [decoratorOnClassMethod11.js]

View File

@@ -14,8 +14,8 @@ class C {
>C : C
@dec ["1"]() { }
>dec : unknown
>dec : () => <T>(target: any, propertyKey: string, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T>
@dec ["b"]() { }
>dec : unknown
>dec : () => <T>(target: any, propertyKey: string, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T>
}