Fixed #30 : Add variable support in BNF concept definition
Fixed #31 : Add regex support in BNF Concept Fixed #33 : Do not memorize object during restore
This commit is contained in:
@@ -47,9 +47,15 @@ class RemovedType(CustomType):
|
||||
super(RemovedType, self).__init__("**Removed**")
|
||||
|
||||
|
||||
class NoFirstTokenType(CustomType):
|
||||
def __init__(self):
|
||||
super(NoFirstTokenType, self).__init__("**NoFirstToken**")
|
||||
|
||||
|
||||
NotInit = NotInitType()
|
||||
NotFound = NotFoundType()
|
||||
Removed = RemovedType()
|
||||
NoFirstToken = NoFirstTokenType()
|
||||
|
||||
|
||||
class ErrorObj:
|
||||
|
||||
Reference in New Issue
Block a user