From 19844949f7c636f0151ca04ea89b0f44729facd9 Mon Sep 17 00:00:00 2001 From: Max Oberaigner Date: Tue, 28 May 2024 15:09:35 +0200 Subject: [PATCH] remove outdated comment --- rust/godot-plugin/src/conversion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/godot-plugin/src/conversion.rs b/rust/godot-plugin/src/conversion.rs index 3732590..7eec965 100644 --- a/rust/godot-plugin/src/conversion.rs +++ b/rust/godot-plugin/src/conversion.rs @@ -84,7 +84,7 @@ pub fn statement_to_godot_ast( Statement::Calc(x) => GodotASTNode { node_type: 3, path: current_path.clone(), - member_data: varray![expression_to_godot_ast(x, current_path)], // TODO: Add path to subexpr + member_data: varray![expression_to_godot_ast(x, current_path)], }, };