| 20 | } |
| 21 | |
| 22 | std::string FormatService::RangeFormat(LuaSyntaxTree &luaSyntaxTree, LuaStyle &luaStyle, FormatRange &range) { |
| 23 | RangeFormatBuilder f(luaStyle, range); |
| 24 | auto text = f.GetFormatResult(luaSyntaxTree); |
| 25 | range = f.GetReplaceRange(); |
| 26 | return text; |
| 27 | } |
| 28 | |
| 29 | std::vector<LuaTypeFormat::Result> |
| 30 | FormatService::TypeFormat(std::string_view trigger, |
no test coverage detected