From 088cd4d1e4a8077e974d518aa7f7441e80d309f9 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 20 Feb 2025 22:05:23 -0600 Subject: [PATCH] cl-interpret: Change format of todo for Impl --- compiler/cl-interpret/src/interpret.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cl-interpret/src/interpret.rs b/compiler/cl-interpret/src/interpret.rs index bc06a3d..7f5a003 100644 --- a/compiler/cl-interpret/src/interpret.rs +++ b/compiler/cl-interpret/src/interpret.rs @@ -126,7 +126,7 @@ impl Interpret for Enum { } impl Interpret for Impl { fn interpret(&self, env: &mut Environment) -> IResult { - println!("TODO: {self}"); + println!("TODO: impl {}", self.target); let Self { target: _, body } = self; body.interpret(env) }