Удалил неиспользуемые файлы
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
import parser.StringValueParser as parser
|
||||
|
||||
class AttributeNameParser(parser.StringValueParser):
|
||||
def __init__(self, attribute_name, model):
|
||||
parser.StringValueParser.__init__(self, attribute_name, model)
|
||||
|
||||
def ProcessToken(self, token):
|
||||
self._model.rel_path = ''
|
||||
@@ -1 +0,0 @@
|
||||
__author__ = 'rzaitov'
|
||||
@@ -1 +0,0 @@
|
||||
__author__ = 'rzaitov'
|
||||
@@ -1,10 +0,0 @@
|
||||
class StringValueParser:
|
||||
def __init__(self, valid_string, model):
|
||||
self._valid_string = valid_string
|
||||
self._model = model
|
||||
|
||||
def IsTokenValid(self, token):
|
||||
return token == self._valid_string
|
||||
|
||||
def ProcessToken(self, token):
|
||||
pass
|
||||
@@ -1,4 +0,0 @@
|
||||
class Token():
|
||||
def __init__(self, content, type):
|
||||
self.content = content
|
||||
self.type = type
|
||||
Reference in New Issue
Block a user