(actions: Action[])
| 588 | } |
| 589 | |
| 590 | private compileGraphChunk<T>(actions: Action[]): T[] { |
| 591 | const compiledChunks: T[] = []; |
| 592 | |
| 593 | actions.forEach(action => { |
| 594 | try { |
| 595 | const compiledChunk = action.compile(); |
| 596 | compiledChunks.push(compiledChunk as any); |
| 597 | } catch (e) { |
| 598 | this.compileError(e, action.getFileName(), action.getTarget()); |
| 599 | } |
| 600 | }); |
| 601 | |
| 602 | return compiledChunks; |
| 603 | } |
| 604 | |
| 605 | private fullyQualifyDependencies(actions: ActionProto[]) { |
| 606 | actions.forEach(action => { |
no test coverage detected