MCPcopy Create free account
hub / github.com/Tablecruncher/tablecruncher / apiFlagRow

Method apiFlagRow

src/macro.cpp:170–178  ·  view source on GitHub ↗

* Flags the given row */

Source from the content-addressed store, hash-verified

168 * Flags the given row
169 */
170duk_ret_t Macro::apiFlagRow(duk_context *context) {
171 duk_idx_t numArgs = duk_get_top(context);
172 if( numArgs == 1 ) {
173 duk_uint_t row = duk_to_uint(context, 0);
174 macro.table->flagRow(row, true);
175 return 1;
176 }
177 return 0;
178}
179
180
181/**

Callers

nothing calls this directly

Calls 1

flagRowMethod · 0.80

Tested by

no test coverage detected