From d581e6510e7f6c530621ad3c914526d4fce8cee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Bo=C4=8Fa?= Date: Mon, 11 Dec 2023 09:12:33 +0100 Subject: [PATCH] chore(cleanup): Code cleanup --- src/interpreter/interpreter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/interpreter.ts b/src/interpreter/interpreter.ts index ee2cde5..dd63643 100644 --- a/src/interpreter/interpreter.ts +++ b/src/interpreter/interpreter.ts @@ -1,4 +1,4 @@ -import { Observable, Subject, Subscription, interval, map, of, take, takeWhile } from "rxjs"; +import { Observable, Subject, Subscription, finalize, interval, map, of, take, takeWhile } from "rxjs"; import { Lexer } from "../lexer/lexer"; import { Token } from "../lexer/lexer.types"; import { NodeType, ObjectDeclaration, ParserValue, Program, VariableDeclaration } from "../parser/parser.types";