( start_line, start_column, end_line, end_column )
| 59 | |
| 60 | |
| 61 | def _BuildLocations( start_line, start_column, end_line, end_column ): |
| 62 | return { |
| 63 | 'line_num' : start_line, |
| 64 | 'column_num': start_column, |
| 65 | }, { |
| 66 | 'line_num' : end_line, |
| 67 | 'column_num': end_column, |
| 68 | } |
| 69 | |
| 70 | |
| 71 | class VimsupportTest( TestCase ): |
no outgoing calls
no test coverage detected