| 128 | } |
| 129 | |
| 130 | static void fcall_varinfo( lk::invoke_t &cxt ) |
| 131 | { |
| 132 | LK_DOC("varinfo", "Gets meta data about an input or output variable. Returns null if the variable does not exist.", "(string:var name):table"); |
| 133 | if ( Case *c = CurrentCase() ) |
| 134 | invoke_get_var_info( c, cxt.arg(0).as_string(), cxt.result() ); |
| 135 | else cxt.error("no active case"); |
| 136 | |
| 137 | } |
| 138 | |
| 139 | static void fcall_selectinputs( lk::invoke_t &cxt ) |
| 140 | { |
nothing calls this directly
no test coverage detected