Lines Matching refs:Block
23 use crate::stmt::Block;
131 Block(ExprBlock),
299 pub block: Block,
331 pub block: Block,
393 pub block: Block,
429 pub body: Block,
458 pub then_branch: Block,
511 pub body: Block,
662 pub block: Block,
692 pub block: Block,
704 pub body: Block,
934 | Expr::Block(ExprBlock { attrs, .. }) in replace_attrs()
1211 use crate::stmt::Block;
1270 Expr::Block(input.parse()?) in parse_with_earlier_boundary_rule()
1858 input.parse().map(Expr::Block) in atom_expr()
1880 Expr::Block(input.parse()?) in atom_labeled()
1888 | Expr::Block(ExprBlock { label, .. }) => *label = Some(the_label), in atom_labeled()
2143 | Expr::Block(_) => false, in continue_parsing_early()
2239 let then_branch: Block = input.parse()?; in parse()
2261 Box::new(Expr::Block(ExprBlock { in parse()
2309 let stmts = content.call(Block::parse_within)?; in parse()
2318 body: Block { brace_token, stmts }, in parse()
2334 let stmts = content.call(Block::parse_within)?; in parse()
2340 body: Block { brace_token, stmts }, in parse()
2562 let body: Block = input.parse()?; in expr_closure()
2564 let block = Expr::Block(ExprBlock { in expr_closure()
2651 let stmts = content.call(Block::parse_within)?; in parse()
2658 body: Block { brace_token, stmts }, in parse()
2672 let stmts = content.call(Block::parse_within)?; in parse()
2677 block: Block { brace_token, stmts }, in parse()
2843 let stmts = content.call(Block::parse_within)?; in parse()
2848 block: Block { brace_token, stmts }, in parse()
2863 let stmts = content.call(Block::parse_within)?; in parse()
2868 block: Block { brace_token, stmts }, in parse()
3216 Expr::Block(e) => e.to_tokens(tokens), in print_expr()
3558 … || matches!(&*e.body, Expr::Block(body) if body.attrs.is_empty() && body.label.is_none()) in print_expr_closure()
3664 Expr::Block(last) => { in to_tokens()