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
The issue is that in case of validation error, the parsing is interrupted but the check for missing data section is still performed, overriding the previous error.
The text was updated successfully, but these errors were encountered:
Ok, looks like this is due to the location where the error is being report. Generally, Wizard tries to report the error at the earliest byte. It could, e.g. report the missing data section at the end of the module, and any previous error would then have precedence. Wdyt?
The data section is not missing. But since the parsing is interrupted before reaching the data section due to the validation error, the check for a missing data section fails. I think the check should be skipped if there is a pending error.
Running this test program, I get the following error:
We should get the following validation error instead:
The issue is that in case of validation error, the parsing is interrupted but the check for missing data section is still performed, overriding the previous error.
The text was updated successfully, but these errors were encountered: