Remove old parser and move new parser to 'ast' package

This commit is contained in:
Bartłomiej Pluta
2019-07-06 15:56:28 +02:00
parent 9a42bbbb2d
commit f81279094f
64 changed files with 573 additions and 1229 deletions

6
smnp/ast/node/ignore.py Normal file
View File

@@ -0,0 +1,6 @@
from smnp.ast.node.model import Node
class IgnoredNode(Node):
def __init__(self, pos):
super().__init__(pos)