[Refactor] Move parsing of {
, }
and :
symbols to the Block syntax module
#482
Labels
{
, }
and :
symbols to the Block syntax module
#482
EBNF explanation
Right now when parsing let's say if loop we perform the following EBNF:
Let's change this to:
Non-EBNF explanation
Basically let's handle parsing of tokens like
{
,}
and:
in Block syntax module so that when we use it later we remember to handle the both syntaxes{ .. }
and:
as well.The text was updated successfully, but these errors were encountered: