Returns the last error stored in the VM, if any.
(&self)
| 1002 | |
| 1003 | /// Returns the last error stored in the VM, if any. |
| 1004 | pub fn last_error(&self) -> Option<(LineCol, &str)> { |
| 1005 | self.last_error.as_ref().map(|(pos, message)| (*pos, message.as_str())) |
| 1006 | } |
| 1007 | |
| 1008 | /// Sets the return value of the function to `b`. |
| 1009 | /// |