MCPcopy Create free account
hub / github.com/NatLabRockies/SAM / fcall_varinfo

Function fcall_varinfo

src/script.cpp:130–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130static 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
139static void fcall_selectinputs( lk::invoke_t &cxt )
140{

Callers

nothing calls this directly

Calls 2

CurrentCaseFunction · 0.85
invoke_get_var_infoFunction · 0.85

Tested by

no test coverage detected