| 98 | } |
| 99 | |
| 100 | void Compiler::deleteConfiguration(int index) { |
| 101 | if (0 <= index && index < configurationNames.size()) { |
| 102 | configurationNames.removeAt(index); |
| 103 | compilerArguments.removeAt(index); |
| 104 | interpreterArguments.removeAt(index); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void Compiler::copyFrom(Compiler *other) { |
| 109 | compilerType = other->getCompilerType(); |
nothing calls this directly
no outgoing calls
no test coverage detected