summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/lldb_rb/commands/rp_command.py1
-rw-r--r--misc/lldb_rb/lldb_interface.py1
-rw-r--r--misc/lldb_rb/rb_base_command.py1
-rw-r--r--misc/lldb_rb/rb_heap_structs.py3
-rw-r--r--misc/lldb_rb/utils.py1
5 files changed, 0 insertions, 7 deletions
@@ -13,4 +13,3 @@ class RbID2StrCommand(RbBaseCommand):
val = self.frame.EvaluateExpression(command)
inspector = RbInspector(debugger, result, self.ruby_globals)
inspector.inspect(val)
-
@@ -5,4 +5,3 @@ class LLDBInterface:
self.process = self.target.GetProcess()
self.thread = self.process.GetSelectedThread()
self.frame = self.thread.GetSelectedFrame()
-
@@ -55,4 +55,3 @@ class RbBaseCommand(LLDBInterface):
def get_long_help(self):
return self.__class__.help_string
-
@@ -135,6 +135,3 @@ class RbObject(LLDBInterface):
len = self.val.GetValueForExpressionPath("->as.heap.len")
return len
-
-
-
@@ -280,4 +280,3 @@ class RbInspector(LLDBInterface):
else:
print("Not-handled type %0#x" % rval.type, file=self.result)
print(val, file=self.result)
-