| 155 | } |
| 156 | |
| 157 | void Compiler::write(QJsonObject &json) const { |
| 158 | WRITE_JSON(json, compilerType); |
| 159 | WRITE_JSON(json, compilerName); |
| 160 | WRITE_JSON(json, compilerLocation); |
| 161 | WRITE_JSON(json, interpreterLocation); |
| 162 | |
| 163 | WRITE_JSON(json, sourceExtensions); |
| 164 | WRITE_JSON(json, bytecodeExtensions); |
| 165 | WRITE_JSON(json, configurationNames); |
| 166 | WRITE_JSON(json, compilerArguments); |
| 167 | WRITE_JSON(json, interpreterArguments); |
| 168 | |
| 169 | WRITE_JSON(json, environment.toStringList()); |
| 170 | |
| 171 | WRITE_JSON(json, timeLimitRatio); // double |
| 172 | WRITE_JSON(json, memoryLimitRatio); // double |
| 173 | WRITE_JSON(json, disableMemoryLimitCheck); // bool |
| 174 | WRITE_JSON(json, interpreterAsWatcher); // bool |
| 175 | } |
no outgoing calls
no test coverage detected