luaur_analysis/methods/
lint_format_string_visit.rs1use crate::records::lint_format_string::LintFormatString;
2use luaur_ast::records::ast_expr_call::AstExprCall;
3
4impl LintFormatString {
5 pub fn visit_ast_expr_call(&mut self, node: *mut AstExprCall) -> bool {
6 self.match_call(node);
7 true
8 }
9}