Lines Matching defs:column
23 def assert_location(self, loc, line, column, offset):
25 self.assertEqual(loc.column, column)
36 self.assert_location(one.location, line=1, column=5, offset=4)
37 self.assert_location(two.location, line=2, column=5, offset=13)
47 self.assert_location(one.location, line=2, column=5, offset=5)
48 self.assert_location(two.location, line=3, column=5, offset=14)
50 # adding a space should affect column on first line only
55 self.assert_location(one.location, line=1, column=6, offset=5)
56 self.assert_location(two.location, line=2, column=5, offset=14)
90 self.assert_location(one.extent.start, line=1, column=1, offset=0)
91 self.assert_location(one.extent.end, line=1, column=8, offset=7)
96 self.assert_location(two.extent.start, line=2, column=1, offset=9)
97 self.assert_location(two.extent.end, line=2, column=8, offset=16)