(annotations: any[] | null)
| 428 | return annotation; |
| 429 | |
| 430 | function collect(annotations: any[] | null) { |
| 431 | if (annotations) { |
| 432 | annotations.forEach(readAnnotation); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | function readAnnotation(decorator: { |
| 437 | type: {prototype: {ngMetadataName: string}; args: any[]}; |
no test coverage detected
searching dependent graphs…