diff options
Diffstat (limited to 'codegen/lib/code')
| -rwxr-xr-x | codegen/lib/code/utils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/codegen/lib/code/utils.py b/codegen/lib/code/utils.py index cb835ecb..f4f9ca82 100755 --- a/codegen/lib/code/utils.py +++ b/codegen/lib/code/utils.py @@ -76,6 +76,9 @@ def burger_type_to_rust_type(burger_type, field_name: Optional[str] = None, inst field_type_rs = 'todo!()' elif burger_type == 'Iterator': field_type_rs = 'todo!()' + elif burger_type == 'Object': + # depends on context + field_type_rs = 'todo!()' elif burger_type == 'enum': if not instruction or not mappings or not obfuscated_class_name: field_type_rs = 'todo!("enum")' |
