Update Transpiler

Jori 2026-05-10 17:43:23 +00:00
parent 8dd7f3253d
commit 2d4b9e0fd2
1 changed files with 10 additions and 4 deletions

@ -15,12 +15,18 @@ Features
- Create wrapper class for single file enum `enum RJ_TriggerMode` to `class_name RJ_TriggerModeEnums` - Create wrapper class for single file enum `enum RJ_TriggerMode` to `class_name RJ_TriggerModeEnums`
- Create prefixed names for Rokojori Object Types - Create prefixed names for Rokojori Object Types
### **C# System Types** ### **C# List/Array**
- List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc - List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc
- Dictionary<K,V> => Dictionary[K,V]
- HashSet<K> => Dictionary[K,true]
- string: `Length` to `length()`
### **C# Dictionary**
- Dictionary<K,V> => Dictionary[K,V]
### **C# HashSet**
- HashSet<K> => Dictionary[K,true]
### **C# String**
- string: `Length` to `length()`
- Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s`
### **Math** ### **Math**
- float.MaxValue converted to value - float.MaxValue converted to value