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
"""proccall_statement : ID LPAREN expr? (COMMA expr)* RPAREN"""
It currently reads """proccall_statement : ID LPAREN expr? (COMMA expr)* RPAREN"""
I believe the correct version is """proccall_statement : ID LPAREN (expr (COMMA expr)*)? RPAREN""", because otherwise foobar(, b, c) would be valid.
If I'm right, then the only additional change is that the while loop
lsbasi/part16/spi.py
Line 581 in 83746bd
It currently reads
"""proccall_statement : ID LPAREN expr? (COMMA expr)* RPAREN"""
I believe the correct version is
"""proccall_statement : ID LPAREN (expr (COMMA expr)*)? RPAREN"""
, because otherwisefoobar(, b, c)
would be valid.If I'm right, then the only additional change is that the while loop
lsbasi/part16/spi.py
Line 592 in 83746bd
The text was updated successfully, but these errors were encountered: