Skip to content

Commit

Permalink
Pretty print MonoString* too in xdb.
Browse files Browse the repository at this point in the history
  • Loading branch information
vargaz committed Feb 11, 2011
1 parent 5505faf commit 0eba8d0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/gdb/mono-gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ def lookup_pretty_printer(val):
return ObjectPrinter (val)
if t == "string":
return StringPrinter (val)
if t == "MonoString *":
return StringPrinter (val)
if t == "MonoMethod *":
return MonoMethodPrinter (val)
if t == "MonoClass *":
Expand Down

0 comments on commit 0eba8d0

Please sign in to comment.