(target, source, include, suffix, parts, kind)
| 2115 | |
| 2116 | class DataRule extends Rule { |
| 2117 | appendSource(target, source, include, suffix, parts, kind) { |
| 2118 | var tool = this.tool; |
| 2119 | if (kind < 0) |
| 2120 | return; |
| 2121 | this.appendFile(tool.dataFiles, target + parts.extension, source, include); |
| 2122 | } |
| 2123 | appendTarget(target) { |
| 2124 | this.appendFolder(this.tool.dataFolders, target); |
| 2125 | } |
nothing calls this directly
no test coverage detected