Fixed static methods calls

This commit is contained in:
Dmitriy Shishkov 2023-10-17 23:02:21 +03:00
parent 416db85a29
commit b1f9f71fae
Signed by: dm1sh
GPG Key ID: 027994B0AA357688

View File

@ -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 = ""