Added more tests

This commit is contained in:
Eduard Urbach 2024-07-05 17:11:30 +02:00
parent 28fc6d2af6
commit 6db1f1af69
Signed by: eduard
GPG key ID: 49226B848C78F6C8
7 changed files with 17 additions and 4 deletions

View file

@ -3,7 +3,7 @@ package errors
var (
InvalidStatement = &Base{"Invalid statement"}
InvalidExpression = &Base{"Invalid expression"}
MissingAssignValue = &Base{"Missing assignment value"}
MissingOperand = &Base{"Missing operand"}
MissingMainFunction = &Base{"Missing main function"}
NotImplemented = &Base{"Not implemented"}
)