Delete empty lines at EOF [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2023-09-30 02:04:48 +09:00
parent 5fa1e246b9
commit e825160257
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
5 changed files with 0 additions and 7 deletions

View File

@ -13,4 +13,3 @@ class RbID2StrCommand(RbBaseCommand):
val = self.frame.EvaluateExpression(command)
inspector = RbInspector(debugger, result, self.ruby_globals)
inspector.inspect(val)

View File

@ -5,4 +5,3 @@ class LLDBInterface:
self.process = self.target.GetProcess()
self.thread = self.process.GetSelectedThread()
self.frame = self.thread.GetSelectedFrame()

View File

@ -55,4 +55,3 @@ class RbBaseCommand(LLDBInterface):
def get_long_help(self):
return self.__class__.help_string

View File

@ -135,6 +135,3 @@ class RbObject(LLDBInterface):
len = self.val.GetValueForExpressionPath("->as.heap.len")
return len

View File

@ -280,4 +280,3 @@ class RbInspector(LLDBInterface):
else:
print("Not-handled type %0#x" % rval.type, file=self.result)
print(val, file=self.result)