Implemented struct pointer types
This commit is contained in:
parent
f7bc903aa4
commit
f76f0a1e4b
17 changed files with 190 additions and 102 deletions
|
@ -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"}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue