view python/ppci/c3/grammar.txt @ 392:bb4289c84907

Added some sort of drop event test
author Windel Bouwman
date Fri, 16 May 2014 13:05:10 +0200
parents 5477e499b039
children
line wrap: on
line source



stmt: if_stmt | while_stmt | for_stmt | assign_stmt | compound_stmt

compound_stmt: '{' stmt ';' stmt ... '}'
if_stmt: 'if' '(' cond ')' stmt
assign_stmt: lhs '=' expr

cond:

expr: