* .gdbinit (rp): detect and show RTypedData.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28162 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2ef85089ec
commit
8bca09325d
9
.gdbinit
9
.gdbinit
@ -268,8 +268,13 @@ define rp
|
||||
print (struct RBasic *)($arg0)
|
||||
else
|
||||
if ($flags & RUBY_T_MASK) == RUBY_T_DATA
|
||||
printf "T_DATA: "
|
||||
print (struct RData *)($arg0)
|
||||
if ((struct RTypedData *)($arg0))->typed_flag == 1
|
||||
printf "T_DATA(typed): "
|
||||
print (struct RTypedData *)($arg0)
|
||||
else
|
||||
printf "T_DATA: "
|
||||
print (struct RData *)($arg0)
|
||||
end
|
||||
else
|
||||
if ($flags & RUBY_T_MASK) == RUBY_T_MATCH
|
||||
printf "T_MATCH: "
|
||||
|
Loading…
x
Reference in New Issue
Block a user