Skip to content

fix: Improve error message returned by Subsume #3862

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions internal/core/subsume/subsume.go
Original file line number Diff line number Diff line change
@@ -120,11 +120,9 @@ func (s *subsumer) getError() (err errors.Error) {
if s.gt != nil && s.lt != nil {
// src := binSrc(token.NoPos, opUnify, s.gt, s.lt)
if s.missing != 0 {
s.errf("missing field %q", s.missing.SelectorString(c))
} else if b, ok := unifyValue(c, s.gt, s.lt).(*adt.Bottom); !ok {
s.errf("value not an instance")
s.errf("field %q not present in %v", s.missing.SelectorString(c), s.lt)
} else {
s.errs = errors.Append(s.errs, b.Err)
s.errf("%v does not subsume %v", s.gt, s.lt)
}
}
if s.errs == nil {
Loading
Oops, something went wrong.