Skip to content

Commit 9333be3

Browse files
committed
adding some delimiters when pretty printing
As title
1 parent 31f742b commit 9333be3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scratch/wpc.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,12 @@ def main():
148148
# Create a NamespaceVisitor instance
149149
cgv = CallGraphVisitor(source_code, source_file)
150150
cgv .visit_all()
151+
print("########## Symbol Table ##########")
151152
pprint.pp(cgv.functions)
153+
print("########## ------------ ##########")
154+
print("########## Global Calls ##########")
152155
pprint.pp(cgv.global_calls)
156+
print("########## ------------ ##########")
153157
return cgv
154158

155159
#compiler = CompilerDriver()

0 commit comments

Comments
 (0)