You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I should be able to get the extracted expression whether the check succeeds or not. However, because parse_and_run_program returns a Result<Vec<String>, Error>, I can't. Instead, it should return something like (Vec<String>, Option<Error>), because not all errors invalidate the log.
The text was updated successfully, but these errors were encountered:
I have a program with the following strucutre:
I should be able to get the extracted expression whether the check succeeds or not. However, because
parse_and_run_program
returns aResult<Vec<String>, Error>
, I can't. Instead, it should return something like(Vec<String>, Option<Error>)
, because not all errors invalidate the log.The text was updated successfully, but these errors were encountered: