| 13 | class FormatVisitor : public LuaBaseVisitor { |
| 14 | public: |
| 15 | FormatVisitor(const std::vector<Token*>& tokens, const Config& config) : tokens_(tokens), config_(config) {} |
| 16 | |
| 17 | antlrcpp::Any visitChunk(LuaParser::ChunkContext* context) override; |
| 18 | antlrcpp::Any visitBlock(LuaParser::BlockContext* context) override; |
nothing calls this directly
no outgoing calls
no test coverage detected