* @param metatype * @returns `true` if `metatype` is annotated with the `@Injectable()` decorator.
(metatype: Type<any>)
| 739 | * @returns `true` if `metatype` is annotated with the `@Injectable()` decorator. |
| 740 | */ |
| 741 | private isInjectable(metatype: Type<any>): boolean { |
| 742 | return !!Reflect.getMetadata(INJECTABLE_WATERMARK, metatype); |
| 743 | } |
| 744 | |
| 745 | /** |
| 746 | * @param metatype |
no test coverage detected