Improve gdb pretty printer a bit more
This commit is contained in:
parent
7833b53272
commit
54dfd8605a
|
@ -48,6 +48,18 @@ class LineAndColumn:
|
|||
self.val['column'])
|
||||
|
||||
|
||||
class ByteCoordAndTarget:
|
||||
"""Print a ByteCoordAndTarget"""
|
||||
|
||||
def __init__(self, val):
|
||||
self.val = val
|
||||
|
||||
def to_string(self):
|
||||
value_type = self.val.type.unqualified()
|
||||
return "%s(%s, %s, %s)" % (value_type, self.val['line'],
|
||||
self.val['column'], self.val['target'])
|
||||
|
||||
|
||||
class BufferIterator:
|
||||
""" Print a BufferIterator"""
|
||||
|
||||
|
@ -175,15 +187,13 @@ class Color:
|
|||
|
||||
def build_pretty_printer():
|
||||
pp = gdb.printing.RegexpCollectionPrettyPrinter("kakoune")
|
||||
pp.add_printer('ArrayView', '^Kakoune::ArrayView<.*>$', ArrayView)
|
||||
pp.add_printer('LineAndColumn', '^Kakoune::LineAndColumn<.*>$', LineAndColumn)
|
||||
pp.add_printer('ByteCoord', '^Kakoune::ByteCoord$', LineAndColumn)
|
||||
pp.add_printer('CharCoord', '^Kakoune::CharCoord$', LineAndColumn)
|
||||
pp.add_printer('ArrayView', '^Kakoune::(Const)?ArrayView<.*>$', ArrayView)
|
||||
pp.add_printer('LineAndColumn', '^Kakoune::(Byte|Char)Coord$', LineAndColumn)
|
||||
pp.add_printer('ByteCoordAndTarget', '^Kakoune::ByteCoordAndTarget$', ByteCoordAndTarget)
|
||||
pp.add_printer('BufferIterator', '^Kakoune::BufferIterator$', BufferIterator)
|
||||
pp.add_printer('String', '^Kakoune::String$', String)
|
||||
pp.add_printer('StringView', '^Kakoune::StringView$', StringView)
|
||||
pp.add_printer('SharedString', '^Kakoune::SharedString$', StringView)
|
||||
pp.add_printer('StringDataPtr', '^Kakoune::RefPtr<Kakoune::StringData,.*>$', StringDataPtr)
|
||||
pp.add_printer('StringView', '^Kakoune::(StringView|SharedString)$', StringView)
|
||||
pp.add_printer('StringDataPtr', '^Kakoune::StringDataPtr$', StringDataPtr)
|
||||
pp.add_printer('RefPtr', '^Kakoune::RefPtr<.*>$', RefPtr)
|
||||
pp.add_printer('Option', '^Kakoune::Option$', Option)
|
||||
pp.add_printer('LineCount', '^Kakoune::LineCount$', LineCount)
|
||||
|
|
Loading…
Reference in New Issue
Block a user