-
Notifications
You must be signed in to change notification settings - Fork 264
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
[EFv2] cleanup error and warnings #6704
base: main
Are you sure you want to change the base?
Conversation
All changed packages have been documented.
Show changes
|
You can try these changes here
|
18072df
to
519256f
Compare
519256f
to
e8d97f6
Compare
e8d97f6
to
e406e41
Compare
e406e41
to
97e8497
Compare
@@ -43,7 +44,12 @@ defineKit<TypekitExtension>({ | |||
}, | |||
getElementType(type) { | |||
if (!this.record.is(type)) { | |||
throw new Error("Type is not a record."); | |||
reportTypekitDiagnostic(this.program, { |
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.
reporting diagnostic from a getter is a bad pattern, it carries the error to the user potentially multiple times without expoissting that to the library author.
Any getter that report diagnmostic should return the error tuple
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.
in general the same applies to probably all typekits
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.
i think it might make more sense to also throw if invalid inputs are used, this means that the library author made an error calling this intead of pushing that onto the user
Addressing #6575 making sure there are no unnecessary throws and clean up the diagnostics in Typekit, Efv2 and http-client-js