Skip to content

Commit c9ca821

Browse files
committed
Remove print statements
1 parent 328a332 commit c9ca821

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Kotlin.ideplugin/Contents/Resources/konan_lldb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def debug_string_buffer_ptr():
9393

9494
def super_big_type_check(lldb_val):
9595
if str(lldb_val.type) != "struct ObjHeader *" or lldb_val.unsigned == 0 or lldb_val.GetName().startswith("&"):
96-
print str(lldb_val.type)
96+
# print str(lldb_val.type)
9797
return NO_TYPE_KNOWN
9898

9999
ptr_str = lldb_val_to_ptr(lldb_val)
@@ -234,8 +234,8 @@ def _read_value(self, index):
234234
def _create_synthetic_child(self, name):
235235
index = self.get_child_index(name)
236236
type_info = self._child_info(index)
237-
if str(name) == "allNames":
238-
print "allNames: "+ str(type_info.type) +"/"+ str(type_info.offset)
237+
# if str(name) == "allNames":
238+
# print "allNames: "+ str(type_info.type) +"/"+ str(type_info.offset)
239239

240240
value = self._valobj.CreateChildAtOffset(str(name),
241241
type_info.offset,

0 commit comments

Comments
 (0)