| 1196 | ExtractValue(name, params, *ctx->args, ctx->required) + RString("/*" PARSING_COMMENT "*/"); |
| 1197 | } |
| 1198 | |
| 1199 | RString CreateOnExpression(RString name, const EditorParams& params, void* context) |
| 1200 | { |
| 1201 | CreateContext* ctx = (CreateContext*)context; |
| 1202 | ctx->some = true; |
| 1203 | return ExtractValue(name, params, *ctx->args, ctx->required); |
| 1204 | } |
| 1205 | |
| 1206 | void EditorObjectType::WriteToScript(QOStream& out, const Arguments& args) const |
nothing calls this directly
no test coverage detected