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
For single-line compound statements, "end" should be put at the end of the line:
ifa>28: a=3; end
In order to parse this correctly, we need more info from lexical analysis. Note that checking lineno is not enough to tell if it is a single-line statement due to logical lines. For example:
ifa>28: \
a=3; end
The text was updated successfully, but these errors were encountered:
For single-line compound statements, "end" should be put at the end of the line:
In order to parse this correctly, we need more info from lexical analysis. Note that checking lineno is not enough to tell if it is a single-line statement due to logical lines. For example:
The text was updated successfully, but these errors were encountered: