| 420 | } |
| 421 | |
| 422 | static void fcall_overwrite_defaults( lk::invoke_t &cxt ) |
| 423 | { |
| 424 | LK_DOC( "overwrite_defaults", "Overwrite SAM default values file for the current configuration with current values.", "(none):boolean"); |
| 425 | if (Case* c = CurrentCase()) { |
| 426 | c->EvaluateEquations(); |
| 427 | cxt.result().assign(c->SaveDefaults(true)); |
| 428 | } |
| 429 | else cxt.error("no active case"); |
| 430 | } |
| 431 | |
| 432 | static void fcall_list_technologies( lk::invoke_t &cxt ) |
| 433 | { |
nothing calls this directly
no test coverage detected