| 1283 | /* Arguments and Variables */ |
| 1284 | |
| 1285 | void fxVars(txMachine* the, txInteger theCount) |
| 1286 | { |
| 1287 | if (the->scope != the->stack) |
| 1288 | mxSyntaxError("C: xsVars: too late"); |
| 1289 | mxOverflow(theCount); |
| 1290 | the->scope->value.environment.variable.count = theCount; |
| 1291 | while (theCount) { |
| 1292 | mxPushUndefined(); |
| 1293 | theCount--; |
| 1294 | } |
| 1295 | } |
| 1296 | |
| 1297 | txInteger fxCheckArg(txMachine* the, txInteger theIndex) |
| 1298 | { |
no outgoing calls
no test coverage detected