|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
p_factor_unary_plus(self,
tree)
V ::= factor ( + V ) |
source code
|
|
|
|
p_factor_unary_minus(self,
tree)
V ::= factor ( - V ) |
source code
|
|
|
|
p_expr_plus(self,
tree)
V ::= expr ( V + V ) |
source code
|
|
|
|
p_expr_minus(self,
tree)
V ::= expr ( V - V ) |
source code
|
|
|
|
p_term_mult(self,
tree)
V ::= term ( V * V ) |
source code
|
|
|
|
p_term_div(self,
tree)
V ::= term ( V / V ) |
source code
|
|
|
|
p_value_paren(self,
tree)
V ::= value ( LPAREN V RPAREN ) |
source code
|
|
|
|
p_arglist(self,
tree)
V ::= arglist ( V , V ) |
source code
|
|
|
|
p_functioncall(self,
tree)
V ::= function_call ( V LPAREN V RPAREN ) |
source code
|
|
|
Inherited from spark.GenericASTMatcher:
foundMatch,
match,
match_r,
preprocess,
resolve
Inherited from spark.GenericParser:
addRule,
ambiguity,
augment,
buildState,
buildTree,
buildTree_r,
collectRules,
makeFIRST,
parse,
typestring
|