(self, edit)
| 103 | |
| 104 | class ConvertRangeIp2cCommand(sublime_plugin.TextCommand): |
| 105 | def run(self, edit): |
| 106 | text = convert_ipv4_to_C(self.view) |
| 107 | new_view(self.view, edit, text) |
| 108 | |
| 109 | |
| 110 | class ConvertRangeC2ipCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected