Implemented struct pointer types

This commit is contained in:
Eduard Urbach 2025-02-05 15:16:00 +01:00
parent f7bc903aa4
commit f76f0a1e4b
Signed by: eduard
GPG key ID: 49226B848C78F6C8
17 changed files with 190 additions and 102 deletions

View file

@ -1,6 +1,7 @@
package errors
var (
CouldNotInferType = &Base{"Couldn't infer type"}
EmptySwitch = &Base{"Empty switch"}
ExpectedFunctionName = &Base{"Expected function name"}
ExpectedFunctionParameters = &Base{"Expected function parameters"}
@ -21,5 +22,4 @@ var (
MissingParameter = &Base{"Missing parameter"}
MissingType = &Base{"Missing type"}
NotImplemented = &Base{"Not implemented"}
UnknownType = &Base{"Unknown type"}
)