Update Transpiler
parent
426c149a47
commit
cb2308cd49
|
|
@ -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**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue