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
Here an INDENT token would be placed right before do_event_more, but not before another_call as they're in the same indentation level. A DEDENT would be placed right before and_finally.
Having optional support for INDENT/DEDENT tokens would make parsing languages that require whitespace to define blocks easier.
Example:
Here an INDENT token would be placed right before
do_event_more
, but not beforeanother_call
as they're in the same indentation level. A DEDENT would be placed right beforeand_finally
.More information on how this is handled by the python parser can be found here:
http://www.secnetix.de/olli/Python/block_indentation.hawk
The text was updated successfully, but these errors were encountered: