From 5432001dff096f727bdff7a28ebfdea29f5dab23 Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 28 Nov 2024 01:55:35 -0500 Subject: [PATCH] Pass all tests --- dust-lang/src/compiler.rs | 36 ++++++++++++++++++++---------------- dust-lang/tests/logic.rs | 7 +------ 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/dust-lang/src/compiler.rs b/dust-lang/src/compiler.rs index 8314966..6704fb6 100644 --- a/dust-lang/src/compiler.rs +++ b/dust-lang/src/compiler.rs @@ -532,14 +532,15 @@ impl<'src> Compiler<'src> { let (previous_instruction, previous_type, previous_position) = self.pop_last_instruction()?; - let argument = if let Some(argument) = previous_instruction.destination_as_argument() { - argument - } else { - return Err(CompileError::ExpectedExpression { - found: self.previous_token.to_owned(), - position: previous_position, - }); - }; + let (argument, push_back) = self.handle_binary_argument(&previous_instruction)?; + + if push_back { + self.chunk.instructions_mut().push(( + previous_instruction, + previous_type.clone(), + previous_position, + )) + } let destination = Destination::Register(self.next_register()); let instruction = match operator.kind() { @@ -773,12 +774,16 @@ impl<'src> Compiler<'src> { }); } - let argument = left_instruction.destination_as_argument().ok_or_else(|| { - CompileError::ExpectedExpression { - found: self.previous_token.to_owned(), - position: left_position, - } - })?; + let (argument, push_back) = self.handle_binary_argument(&left_instruction)?; + + if push_back { + self.chunk.instructions_mut().push(( + left_instruction, + left_type.clone(), + left_position, + )); + } + let operator = self.current_token; let operator_position = self.current_position; let rule = ParseRule::from(&operator); @@ -803,7 +808,6 @@ impl<'src> Compiler<'src> { }); self.advance()?; - self.emit_instruction(left_instruction, left_type, left_position); self.emit_instruction(test, Type::None, operator_position); self.emit_instruction(jump, Type::None, operator_position); self.parse_sub_expression(&rule.precedence)?; @@ -864,7 +868,7 @@ impl<'src> Compiler<'src> { self.parse_expression()?; - let register = self.next_register(); + let register = self.next_register() - 1; let set_local = Instruction::from(SetLocal { register, local_index, diff --git a/dust-lang/tests/logic.rs b/dust-lang/tests/logic.rs index 0a5a533..dbe71a7 100644 --- a/dust-lang/tests/logic.rs +++ b/dust-lang/tests/logic.rs @@ -114,11 +114,6 @@ fn variable_and() { Type::None, Span(18, 19) ), - ( - Instruction::get_local(Destination::Register(2), 0), - Type::Boolean, - Span(29, 30) - ), ( Instruction::test(Argument::Local(0), true), Type::None, @@ -126,7 +121,7 @@ fn variable_and() { ), (Instruction::jump(1, true), Type::None, Span(31, 33)), ( - Instruction::get_local(Destination::Register(3), 1), + Instruction::get_local(Destination::Register(2), 1), Type::Boolean, Span(34, 35) ),