Lines Matching refs:INDENT
224 … | "match" subject=subject_expr ':' NEWLINE INDENT cases[asdl_match_case_seq*]=case_block+ DEDENT {
418 | NEWLINE t=TYPE_COMMENT &(NEWLINE INDENT) { t } # Must be followed by indented block
496 | NEWLINE INDENT a=statements DEDENT { a }
904 | NEWLINE !INDENT { RAISE_INDENTATION_ERROR("expected an indented block") }
934 | TYPE_COMMENT NEWLINE TYPE_COMMENT NEWLINE INDENT {
957 | [ASYNC] a='with' ','.(expression ['as' star_target])+ ':' NEWLINE !INDENT {
959 | [ASYNC] a='with' '(' ','.(expressions ['as' star_target])+ ','? ')' ':' NEWLINE !INDENT {
963 | a='try' ':' NEWLINE !INDENT {
972 | a='finally' ':' NEWLINE !INDENT {
975 | a='except' expression ['as' NAME ] ':' NEWLINE !INDENT {
977 …| a='except' ':' NEWLINE !INDENT { RAISE_SYNTAX_ERROR("expected an indented block after except sta…
980 | a="match" subject=subject_expr ':' NEWLINE !INDENT {
984 | a="case" patterns guard? ':' NEWLINE !INDENT {
998 | a='if' a=named_expression ':' NEWLINE !INDENT {
1002 | a='elif' named_expression ':' NEWLINE !INDENT {
1005 | a='else' ':' NEWLINE !INDENT {
1009 | a='while' named_expression ':' NEWLINE !INDENT {
1012 | [ASYNC] a='for' star_targets 'in' star_expressions ':' NEWLINE !INDENT {
1015 | [ASYNC] a='def' NAME '(' [params] ')' ['->' expression] ':' NEWLINE !INDENT {
1018 | a='class' NAME ['('[arguments] ')'] ':' NEWLINE !INDENT {