view ply-3.8/test/pkg_test6/parsing/statement.py @ 9221:c0b832644ab3

<shachaf> slwd tanebvention//s#Tanebventions, ##
author HackBot
date Mon, 10 Oct 2016 23:36:14 +0000
parents 343ff337a19b
children
line wrap: on
line source

# 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]