(path)
| 110103 | var outputs; |
| 110104 | return { addOutput: addOutput, getOutputs: getOutputs }; |
| 110105 | function addOutput(path) { |
| 110106 | if (path) { |
| 110107 | (outputs || (outputs = [])).push(path); |
| 110108 | } |
| 110109 | } |
| 110110 | function getOutputs() { |
| 110111 | return outputs || ts.emptyArray; |
| 110112 | } |
no test coverage detected