Add multi pointers to core

This commit is contained in:
gingerBill
2021-08-21 23:16:14 +01:00
parent 932f330a51
commit 18a0fa02c5
7 changed files with 111 additions and 33 deletions
+3
View File
@@ -139,6 +139,9 @@ marshal_arg :: proc(b: ^strings.Builder, v: any) -> Marshal_Error {
case runtime.Type_Info_Pointer:
return .Unsupported_Type;
case runtime.Type_Info_Multi_Pointer:
return .Unsupported_Type;
case runtime.Type_Info_Procedure:
return .Unsupported_Type;