(phase)
| 102 | } |
| 103 | |
| 104 | function phaseEnumToPhaseName(phase) { |
| 105 | const phaseName = PHASE_MAP[phase]; |
| 106 | assert(phaseName !== undefined, `Invalid phase value: ${phase}`); |
| 107 | return phaseName; |
| 108 | } |
| 109 | |
| 110 | class Module { |
| 111 | constructor(options) { |
no test coverage detected
searching dependent graphs…