| Index: tools/nixysa/third_party/ply-3.1/test/yacc_nop.py
|
| ===================================================================
|
| --- tools/nixysa/third_party/ply-3.1/test/yacc_nop.py (revision 0)
|
| +++ tools/nixysa/third_party/ply-3.1/test/yacc_nop.py (revision 0)
|
| @@ -0,0 +1,68 @@
|
| +# -----------------------------------------------------------------------------
|
| +# yacc_nop.py
|
| +#
|
| +# Possible grammar rule defined without p_ prefix
|
| +# -----------------------------------------------------------------------------
|
| +import sys
|
| +
|
| +if ".." not in sys.path: sys.path.insert(0,"..")
|
| +import ply.yacc as yacc
|
| +
|
| +from calclex import tokens
|
| +
|
| +# Parsing rules
|
| +precedence = (
|
| + ('left','PLUS','MINUS'),
|
| + ('left','TIMES','DIVIDE'),
|
| + ('right','UMINUS'),
|
| + )
|
| +
|
| +# dictionary of names
|
| +names = { }
|
| +
|
| +def p_statement_assign(t):
|
| + 'statement : NAME EQUALS expression'
|
| + names[t[1]] = t[3]
|
| +
|
| +def statement_expr(t):
|
| + 'statement : expression'
|
| + print(t[1])
|
| +
|
| +def p_expression_binop(t):
|
| + '''expression : expression PLUS expression
|
| + | expression MINUS expression
|
| + | expression TIMES expression
|
| + | expression DIVIDE expression'''
|
| + if t[2] == '+' : t[0] = t[1] + t[3]
|
| + elif t[2] == '-': t[0] = t[1] - t[3]
|
| + elif t[2] == '*': t[0] = t[1] * t[3]
|
| + elif t[2] == '/': t[0] = t[1] / t[3]
|
| +
|
| +def p_expression_uminus(t):
|
| + 'expression : MINUS expression %prec UMINUS'
|
| + t[0] = -t[2]
|
| +
|
| +def p_expression_group(t):
|
| + 'expression : LPAREN expression RPAREN'
|
| + t[0] = t[2]
|
| +
|
| +def p_expression_number(t):
|
| + 'expression : NUMBER'
|
| + t[0] = t[1]
|
| +
|
| +def p_expression_name(t):
|
| + 'expression : NAME'
|
| + try:
|
| + t[0] = names[t[1]]
|
| + except LookupError:
|
| + print("Undefined name '%s'" % t[1])
|
| + t[0] = 0
|
| +
|
| +def p_error(t):
|
| + print("Syntax error at '%s'" % t.value)
|
| +
|
| +yacc.yacc()
|
| +
|
| +
|
| +
|
| +
|
|
|
| Property changes on: tools/nixysa/third_party/ply-3.1/test/yacc_nop.py
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|