Lines Matching defs:post
1247 def post(t):
1248 found.append("post(%s)" % t)
1252 visitor.visit(t, pre, post)
1254 expecting = [ "pre(PRINT)", "pre(MULT)", "pre(x)", "post(x)",
1255 "pre(VEC)", "pre(MULT)", "pre(9)", "post(9)", "pre(1)",
1256 "post(1)", "post(MULT)", "pre(2)", "post(2)", "pre(3)",
1257 "post(3)", "post(VEC)", "post(MULT)", "post(PRINT)" ]