-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test function call semantics #104
base: master
Are you sure you want to change the base?
Conversation
ab08f1b
to
b4cef23
Compare
} | ||
`, | ||
ErrWrongArgType{ | ||
Pos: makePos(2, 8), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think we should abstract the testing away from these node positions? Or do you think they belong here?
r = recover() | ||
}() | ||
err = Check(mod) | ||
}() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably return errors.WithStack
instead of panicking in Check
.
@slushie Needs a rebase. |
Addresses #87
Some failing tests due to changes required in the
checker
package, provided in another PR.