-
Notifications
You must be signed in to change notification settings - Fork 3
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
Address @ts-expect-error
#139
Comments
Unassigning until we're working on this sim. |
As of this writing, all files have been converted to TypeScript. There are 17 occurrences of In Challenge.ts, we have |
In the above commits, I added this cast to address assert && assert( challenge.guessProperty.value instanceof Line );
const guessProperty = challenge.guessProperty as Property<Line>; Then I realized that this is unsafe, because the cast is only valid for the initial value of There are also some I also made LineNode take |
In the above commit, I replaced a few more unsafe |
In the above commits, I simplified |
Unassigning until work on this sim resumes. |
This does not need to be completed for the 1.4 release, #142. |
Address occurrences of
@ts-expect-error
.Then make this change in package.json:
The text was updated successfully, but these errors were encountered: