cl-interpret: Change format of todo for Impl

This commit is contained in:
John 2025-02-20 22:05:23 -06:00
parent 0fd9c002fc
commit 088cd4d1e4

View File

@ -126,7 +126,7 @@ impl Interpret for Enum {
} }
impl Interpret for Impl { impl Interpret for Impl {
fn interpret(&self, env: &mut Environment) -> IResult<ConValue> { fn interpret(&self, env: &mut Environment) -> IResult<ConValue> {
println!("TODO: {self}"); println!("TODO: impl {}", self.target);
let Self { target: _, body } = self; let Self { target: _, body } = self;
body.interpret(env) body.interpret(env)
} }