blob: ef7dc55e3ff9bf55991f832bf0956c59fffd9c02 [file] [log] [blame]
# This file contains definitions of statement grammar
def p_statement_assign(t):
'statement : NAME EQUALS expression'
names[t[1]] = t[3]
def p_statement_expr(t):
'statement : expression'
t[0] = t[1]