From 426c149a47f5346e4f2a622fa52958f01bc406f1 Mon Sep 17 00:00:00 2001 From: Jori Date: Mon, 11 May 2026 05:13:11 +0000 Subject: [PATCH] Update Transpiler --- Transpiler.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Transpiler.md b/Transpiler.md index ccd17a4..e157739 100644 --- a/Transpiler.md +++ b/Transpiler.md @@ -29,6 +29,11 @@ Features - string: `Length` to `length()` - Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s` +### **C# Delegates/GDScript Callable** +- rewrite to not-nullable type +- null-initializers from `null` to `Callable()` +- null-comparisons from `c == null` to `c == null || c.is_null()` + ### **Math** - float.MaxValue converted to value - `float.IsInfinity` to `is_inf`