mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Add multi pointers to core
This commit is contained in:
@@ -203,6 +203,9 @@ print_type :: proc "contextless" (ti: ^Type_Info) {
|
||||
print_string("^");
|
||||
print_type(info.elem);
|
||||
}
|
||||
case Type_Info_Multi_Pointer:
|
||||
print_string("[^]");
|
||||
print_type(info.elem);
|
||||
case Type_Info_Procedure:
|
||||
print_string("proc");
|
||||
if info.params == nil {
|
||||
|
||||
Reference in New Issue
Block a user