(tool)
| 628 | this.generateDependenciesDefinitions(tool); |
| 629 | } |
| 630 | generateManifestDefinitions(tool) { |
| 631 | this.write("MANIFEST ="); |
| 632 | for (var result in tool.manifests.already) { |
| 633 | this.write(" \\\n\t"); |
| 634 | this.write(result); |
| 635 | } |
| 636 | this.line(""); |
| 637 | this.line(""); |
| 638 | } |
| 639 | generateModulesDefinitions(tool) { |
| 640 | this.write("MODULES ="); |
| 641 | for (var result of tool.nodered2mcuFiles) { |
no test coverage detected