Home | History | Annotate | Download | only in fixes

Lines Matching refs:expr_stmt

29           1)  clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
30 2) clsdef => simple_stmt => expr_stmt => Leaf('__meta')
37 if expr_node.type == syms.expr_stmt and expr_node.children:
83 new_expr = Node(syms.expr_stmt, [])
108 # look for simple_stmt[ expr_stmt[ Leaf('__metaclass__') ] ]
112 if expr_node.type == syms.expr_stmt and expr_node.children:
204 expr_stmt = last_metaclass.children[0]
205 assert expr_stmt.type == syms.expr_stmt
206 expr_stmt.children[1].prefix = u''
207 expr_stmt.children[2].prefix = u''