Home
last modified time | relevance | path

Searched defs:walk_expr (Results 1 – 7 of 7) sorted by relevance

/third_party/rust/rust/compiler/rustc_middle/src/thir/
Dvisit.rs39 pub fn walk_expr<'a, 'tcx: 'a, V: Visitor<'a, 'tcx>>(visitor: &mut V, expr: &Expr<'tcx>) { in walk_expr() function
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-db/src/syntax_helpers/
Dnode_ext.rs30 pub fn walk_expr(expr: &ast::Expr, cb: &mut dyn FnMut(ast::Expr)) { in walk_expr() function
/third_party/rust/rust/compiler/rustc_hir_typeck/src/
Dexpr_use_visitor.rs194 pub fn walk_expr(&mut self, expr: &hir::Expr<'_>) { in walk_expr() method
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-ty/src/infer/
Dclosure.rs441 fn walk_expr(&mut self, tgt_expr: ExprId) { in walk_expr() method
/third_party/rust/rust/compiler/rustc_ast/src/
Dvisit.rs775 pub fn walk_expr<'a, V: Visitor<'a>>(visitor: &mut V, expression: &'a Expr) { in walk_expr() function
/third_party/rust/rust/compiler/rustc_hir/src/
Dintravisit.rs690 pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr<'v>) { in walk_expr() function
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-assists/src/handlers/
Dextract_function.rs605 fn walk_expr(&self, cb: &mut dyn FnMut(ast::Expr)) { in walk_expr() method