Fixed static methods calls
This commit is contained in:
parent
416db85a29
commit
b1f9f71fae
@ -15,15 +15,17 @@ class Tokenizer:
|
|||||||
prev = None
|
prev = None
|
||||||
|
|
||||||
for ch in self.expression:
|
for ch in self.expression:
|
||||||
if (breaker_type := self.is_breaker(ch)) is not None:
|
if (breaker_type := Tokenizer.is_breaker(ch)) is not None:
|
||||||
if len(accumulator) > 0:
|
if len(accumulator) > 0:
|
||||||
# ch is `(` after function name
|
# ch is `(` after function name
|
||||||
if breaker_type == Token.LBrace and self.is_function(accumulator):
|
if breaker_type == Token.LBrace and Tokenizer.is_function(
|
||||||
|
accumulator
|
||||||
|
):
|
||||||
yield accumulator, Token.Function
|
yield accumulator, Token.Function
|
||||||
prev = Token.Function
|
prev = Token.Function
|
||||||
accumulator = ""
|
accumulator = ""
|
||||||
else:
|
else:
|
||||||
value, token_type = self.detect_number(accumulator)
|
value, token_type = Tokenizer.detect_number(accumulator)
|
||||||
yield value, token_type
|
yield value, token_type
|
||||||
prev = token_type
|
prev = token_type
|
||||||
accumulator = ""
|
accumulator = ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user