Lines Matching refs:stmt
6 mod = Module(stmt* body, type_ignore* type_ignores)
7 | Interactive(stmt* body)
11 stmt = FunctionDef(identifier name, arguments args,
12 stmt* body, expr* decorator_list, expr? returns,
15 stmt* body, expr* decorator_list, expr? returns,
21 stmt* body,
32 | For(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)
33 | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)
34 | While(expr test, stmt* body, stmt* orelse)
35 | If(expr test, stmt* body, stmt* orelse)
36 | With(withitem* items, stmt* body, string? type_comment)
37 | AsyncWith(withitem* items, stmt* body, string? type_comment)
42 | Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody)
108 excepthandler = ExceptHandler(expr? type, identifier? name, stmt* body)
127 match_case = (pattern pattern, expr? guard, stmt* body)