Added first implementation of concepts ambiguity resolution + Jenkins file test
This commit is contained in:
@@ -487,6 +487,11 @@ class Tokenizer:
|
||||
return result, lines_count, column_index
|
||||
|
||||
def eat_word(self, start):
|
||||
"""
|
||||
Word is an alphanum (no space)
|
||||
:param start:
|
||||
:return:
|
||||
"""
|
||||
result = self.text[start]
|
||||
i = start + 1
|
||||
while i < self.text_len:
|
||||
|
||||
Reference in New Issue
Block a user