| 46 | |
| 47 | void LuaStyle::Parse(std::map<std::string, std::string, std::less<>> &configMap) { |
| 48 | IF_EXIST(indent_style) { |
| 49 | if (value == "tab") { |
| 50 | indent_style = IndentStyle::Tab; |
| 51 | } else if (value == "space") { |
| 52 | indent_style = IndentStyle::Space; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | NUMBER_OPTION(indent_size) |
| 57 |
no test coverage detected