Split out Flat generator to be able to test it

This commit is contained in:
Stephan Kulow
2022-11-02 07:20:53 +01:00
parent c94d13d74e
commit 4ff9b9771a
11 changed files with 421 additions and 61 deletions

6
lib/abstract_walker.py Normal file
View File

@@ -0,0 +1,6 @@
class AbstractWalker:
"""Just a duck type, most likely not needed by python, but I
find interface classes preferable (java school)"""
def call(self, node, is_source):
pass