Skip to main content

luaur_analysis/methods/
expr_printer_visit_dump_cfg_alt_h.rs

1use crate::records::expr_printer::ExprPrinter;
2use luaur_ast::records::ast_expr::AstExpr;
3
4impl ExprPrinter {
5    pub fn visit_ast_expr(&mut self, _node: *mut AstExpr) -> bool {
6        self.result.push_str("<expr>");
7        false
8    }
9}