=== tests/cases/conformance/decorators/class/method/decoratorOnClassMethod13.ts === declare function dec(): (target: any, propertyKey: string, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor; >dec : () => (target: any, propertyKey: string, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor >T : T >target : any >propertyKey : string >descriptor : TypedPropertyDescriptor >TypedPropertyDescriptor : TypedPropertyDescriptor >T : T >TypedPropertyDescriptor : TypedPropertyDescriptor >T : T class C { >C : C @dec ["1"]() { } >dec : () => (target: any, propertyKey: string, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor >"1" : string @dec ["b"]() { } >dec : () => (target: any, propertyKey: string, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor >"b" : string }