MCPcopy Create free account
hub / github.com/Project-LemonLime/Project_LemonLime / write

Method write

src/base/compiler.cpp:157–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157void 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}

Callers 2

saveContestMethod · 0.45
testWriteCdfMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected