Skip to content

Commit b1339f3

Browse files
author
Vano
committed
Sync with adc5849
1 parent 6285d83 commit b1339f3

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

godot_cppscript.cmake

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -881,9 +881,6 @@ def parse_header(index, filename, filecontent, env):
881881
class_cursors.append(cursor)
882882
883883
case CursorKind.FIELD_DECL:
884-
print(f\"Cursor '{cursor.spelling}'\")
885-
print(f\"Type '{cursor.type.spelling}'\")
886-
print([(i.kind, i.spelling) for i in cursor.get_tokens()])
887884
class_cursors.append(cursor)
888885
889886
case CursorKind.ENUM_DECL:

godot_cppscript.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -939,9 +939,6 @@ def parse_class(parent, class_cursors):
939939
class_cursors.append(cursor)
940940

941941
case CursorKind.FIELD_DECL:
942-
print(f"Cursor '{cursor.spelling}'")
943-
print(f"Type '{cursor.type.spelling}'")
944-
print([(i.kind, i.spelling) for i in cursor.get_tokens()])
945942
class_cursors.append(cursor)
946943

947944
case CursorKind.ENUM_DECL:

0 commit comments

Comments
 (0)