GOTO NAME;
| 438 | |
| 439 | // GOTO NAME; |
| 440 | antlrcpp::Any FormatVisitor::visitGotoStat(LuaParser::GotoStatContext* ctx) { |
| 441 | LOG_FUNCTION_BEGIN(); |
| 442 | cur_writer() << ctx->GOTO()->getText(); |
| 443 | cur_writer() << commentAfter(ctx->GOTO(), " "); |
| 444 | cur_writer() << ctx->NAME()->getText(); |
| 445 | LOG_FUNCTION_END(); |
| 446 | return nullptr; |
| 447 | } |
| 448 | |
| 449 | // DO block END; |
| 450 | antlrcpp::Any FormatVisitor::visitDoStat(LuaParser::DoStatContext* ctx) { |