view ply-3.8/test/pkg_test6/parsing/statement.py @ 11333:fabb7a2d8264

<oerjan> revert
author HackBot
date Thu, 18 Jan 2018 03:50:45 +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]