(self, edit)
| 115 | |
| 116 | class ConvertRangeIp2bCommand(sublime_plugin.TextCommand): |
| 117 | def run(self, edit): |
| 118 | text = convert_ipv4_to_B(self.view) |
| 119 | new_view(self.view, edit, text) |
| 120 | |
| 121 | |
| 122 | class SelectDomainRootAllCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected