| 653 | } |
| 654 | |
| 655 | void _262_evalScript(txMachine* the) |
| 656 | { |
| 657 | txSlot* realm = mxProgram.value.reference->next->value.module.realm; |
| 658 | txStringStream aStream; |
| 659 | aStream.slot = mxArgv(0); |
| 660 | aStream.offset = 0; |
| 661 | aStream.size = c_strlen(fxToString(the, mxArgv(0))); |
| 662 | fxRunScript(the, fxParseScript(the, &aStream, fxStringGetter, mxProgramFlag | mxDebugFlag), mxRealmGlobal(realm), C_NULL, mxRealmClosures(realm)->value.reference, C_NULL, mxProgram.value.reference); |
| 663 | mxPullSlot(mxResult); |
| 664 | } |
| 665 | |
| 666 | #if __ZEPHYR__ |
| 667 |
nothing calls this directly
no test coverage detected