Update Transpiler

Jori 2026-05-11 07:32:34 +00:00
parent 426c149a47
commit cb2308cd49
1 changed files with 4 additions and 2 deletions

@ -30,8 +30,10 @@ Features
- Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s` - Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s`
### **C# Delegates/GDScript Callable** ### **C# Delegates/GDScript Callable**
- rewrite to not-nullable type - add call invocation `callable(x)` to `callable.call( x )`
- null-initializers from `null` to `Callable()` - 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()` - null-comparisons from `c == null` to `c == null || c.is_null()`
### **Math** ### **Math**