From b1f9f71fae168a9eac5f5e2502e1352524e04436 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Tue, 17 Oct 2023 23:02:21 +0300 Subject: [PATCH] Fixed static methods calls --- parser/parser/tokenizer.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/parser/parser/tokenizer.py b/parser/parser/tokenizer.py index 60501fb..6250ce8 100644 --- a/parser/parser/tokenizer.py +++ b/parser/parser/tokenizer.py @@ -15,15 +15,17 @@ class Tokenizer: prev = None 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: # 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 prev = Token.Function accumulator = "" else: - value, token_type = self.detect_number(accumulator) + value, token_type = Tokenizer.detect_number(accumulator) yield value, token_type prev = token_type accumulator = ""