RuntimeErrorString returns the last runtime erro rthat the program enountered.
()
| 1041 | |
| 1042 | // RuntimeErrorString returns the last runtime erro rthat the program enountered. |
| 1043 | func (v *VM) RuntimeErrorString() string { |
| 1044 | v.runtimeErrorMu.RLock() |
| 1045 | defer v.runtimeErrorMu.RUnlock() |
| 1046 | return v.runtimeError |
| 1047 | } |
| 1048 | |
| 1049 | // Run starts the VM and processes lines coming in on the input channel. When |
| 1050 | // the channel is closed, and the VM has finished processing the VM is shut |
no outgoing calls
no test coverage detected