From dc8206d9fdcbcae79afbb6340678a2c86a5cfca7 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 23 Jan 2023 16:20:07 -0500 Subject: [PATCH] Remove another old TODO --- src/lib/utils/formatting.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/utils/formatting.rs b/src/lib/utils/formatting.rs index ec0a628..ac3dc68 100644 --- a/src/lib/utils/formatting.rs +++ b/src/lib/utils/formatting.rs @@ -112,7 +112,6 @@ pub fn pretty_format_value( depth: usize, ) -> anyhow::Result<()> { // TODO: Handle tables with cyclic references - // TODO: Handle other types like function, userdata, ... match &value { LuaValue::Nil => write!(buffer, "nil")?, LuaValue::Boolean(true) => write!(buffer, "{COLOR_YELLOW}true{COLOR_RESET}")?,