Home | History | Annotate | Download | only in compiler

Lines Matching refs:stmt

19 # (except Module, Discard and Stmt) added by Sylvain Thenault
189 return Module(doc, Stmt(stmts))
274 assert isinstance(code, Stmt)
310 assert isinstance(code, Stmt)
316 def stmt(self, nodelist):
319 small_stmt = stmt
320 flow_stmt = stmt
321 compound_stmt = stmt
328 return Stmt(stmts)
559 # simple_stmt | NEWLINE INDENT NEWLINE* (stmt NEWLINE*)+ DEDENT
565 if node[0] == symbol.stmt:
567 return Stmt(stmts)
802 # break_stmt, stmt, small_stmt, flow_stmt, simple_stmt,
1092 if isinstance(result, Stmt):
1094 return Stmt([result])
1099 if isinstance(result, Stmt):
1402 if sub[0] == symbol.stmt:
1407 if sub[0] == symbol.stmt:
1417 if n == symbol.stmt or n == symbol.simple_stmt \
1459 symbol.stmt,