| 338 | } |
| 339 | |
| 340 | antlrcpp::Any FormatVisitor::visitStat(LuaParser::StatContext* ctx) { |
| 341 | LOG_FUNCTION_BEGIN(); |
| 342 | if (chop_down_block_) { |
| 343 | cur_writer() << indent(); |
| 344 | } |
| 345 | visitChildren(ctx); |
| 346 | LOG_FUNCTION_END(); |
| 347 | return nullptr; |
| 348 | } |
| 349 | |
| 350 | // varlist EQL explist; |
| 351 | antlrcpp::Any FormatVisitor::visitVarDecl(LuaParser::VarDeclContext* ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected