From cb2308cd498bd2772a7e779a1c053c08954a35ae Mon Sep 17 00:00:00 2001 From: Jori Date: Mon, 11 May 2026 07:32:34 +0000 Subject: [PATCH] Update Transpiler --- Transpiler.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Transpiler.md b/Transpiler.md index e157739..d09c75c 100644 --- a/Transpiler.md +++ b/Transpiler.md @@ -30,8 +30,10 @@ Features - 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()` +- add call invocation `callable(x)` to `callable.call( x )` +- rewrite to not-nullable type with +- declaration null-initializers from `null` to `Callable()` +- variable null-initializers from `null` to `Callable()` - null-comparisons from `c == null` to `c == null || c.is_null()` ### **Math**