| 33 | } |
| 34 | |
| 35 | void DiagnosticBuilder::CodeStyleCheck(const LuaSyntaxTree &t) { |
| 36 | if (!_diagnosticStyle.code_style_check) { |
| 37 | return; |
| 38 | } |
| 39 | |
| 40 | CodeStyleChecker checker; |
| 41 | checker.Analyze(*this, t); |
| 42 | } |
| 43 | |
| 44 | void DiagnosticBuilder::NameStyleCheck(const LuaSyntaxTree &t) { |
| 45 | if (!_diagnosticStyle.name_style_check) { |
no test coverage detected