Working on #48 : Renamed ExpressionParser.py into LogicalOperatorParser.py
This commit is contained in:
@@ -60,7 +60,7 @@ class ReteConditionsEmitter:
|
||||
return [AndConditions(conditions)]
|
||||
|
||||
|
||||
class ExpressionParser(BaseParser):
|
||||
class LogicalOperatorParser(BaseParser):
|
||||
"""
|
||||
will parser logic expression
|
||||
like not (a and b or c)
|
||||
@@ -91,7 +91,7 @@ class ExpressionParser(BaseParser):
|
||||
if not isinstance(parser_input, ParserInput):
|
||||
return None
|
||||
|
||||
context.log(f"Parsing '{parser_input}' with ExpressionParser", self.name)
|
||||
context.log(f"Parsing '{parser_input}' with LogicalOperatorParser", self.name)
|
||||
sheerka = context.sheerka
|
||||
|
||||
if parser_input.is_empty():
|
||||
Reference in New Issue
Block a user