changed expected syntax for source code interpretation

This commit is contained in:
weckyy702
2020-12-22 21:04:35 +01:00
parent 23fe6857c8
commit 432ea5a78b
3 changed files with 7 additions and 5 deletions

View File

@@ -52,10 +52,10 @@ def get_instructions_in_scope(src: List[str], start_idx: int = 0) -> Tuple[List[
logging.debug("Found if instruction in line: %i", i+1)
bracket_idx = line.rindex(')') # throws if the contruct is illformed
instruction_txt = line[3:bracket_idx]
true_instructions, i = get_instructions_in_scope(src, i+1)
true_instructions, i = get_instructions_in_scope(src, i+2)
false_instructions = None
if src[i].__contains__("else"): #if there is an else statement, check it
false_instructions, i = get_instructions_in_scope(src, i+1)
false_instructions, i = get_instructions_in_scope(src, i+2)
outer_scope.add_instruction(if_instruction(instruction_txt, true_instructions, false_instructions))
else: