Create new parser (works for lists so far)

This commit is contained in:
Bartłomiej Pluta
2019-07-05 16:45:59 +02:00
parent 23e0f3f33e
commit ed73aa1ad1
32 changed files with 516 additions and 59 deletions

9
smnp/newast/node/none.py Normal file
View File

@@ -0,0 +1,9 @@
from smnp.newast.node.model import Node
class NoneNode(Node):
def __init__(self):
super().__init__((-1, -1))
def _parse(self, input):
pass