From d0b1230c95278b178423e979914f69a070fa9f46 Mon Sep 17 00:00:00 2001 From: "[ Taha. Dostifam ]" Date: Fri, 3 Jan 2025 00:13:43 +0330 Subject: [PATCH] Revert "refactor" This reverts commit 055a1d80bec0e9f5c0d0f9882bf7c10fbe018114. --- compiler/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/src/lib.rs b/compiler/src/lib.rs index 20dcc81..de71462 100644 --- a/compiler/src/lib.rs +++ b/compiler/src/lib.rs @@ -119,8 +119,7 @@ impl<'a> Compiler<'a> { Expression::Infix(binary_expression) => self.compile_infix_expression(binary_expression), Expression::FunctionCall(function_call) => todo!(), Expression::UnaryOperator(unary_operator) => self.compile_unary_operator(unary_operator), - Expression::Array(array) => todo!(), - Expression::ArrayIndex(array_index) => todo!() + Expression::Array(array) => todo!() } }