| 1188 | ctx->required = true; |
| 1189 | } |
| 1190 | |
| 1191 | RString CreateOnValue(RString name, const EditorParams& params, void* context) |
| 1192 | { |
| 1193 | CreateContext* ctx = (CreateContext*)context; |
| 1194 | ctx->some = true; |
| 1195 | return RString("/*" PARSING_COMMENT) + name + RString("*/") + |
| 1196 | ExtractValue(name, params, *ctx->args, ctx->required) + RString("/*" PARSING_COMMENT "*/"); |
| 1197 | } |
| 1198 | |
| 1199 | RString CreateOnExpression(RString name, const EditorParams& params, void* context) |
nothing calls this directly
no test coverage detected