"not implemented" Error when running tests on code that has errors
See original GitHub issueWhen using @compiletime
and calling R2W(1116.0, 2, 2)
the WurstScript interpreter crashes with an internal error.
Note that in my experiments the call to R2W
is not direct but through real.toString
.
Also other precision
params such as 0
or 1
result in the same internal error.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
jest: debugging 'not implemented' errors - code-comments
Unfortunately, this started spewing errors in my tests! console.error Error: Not implemented: window.scrollTo at module.exports.
Read more >How to Fix the HTTP 501 Not Implemented Error on Your Site
The HTTP 501 Not Implemented status code indicates that the server does not support the functionality required to fulfill the request.
Read more >Calls to window.computedStyle(elt, pseudoElt) throws Not ...
I'm using testing-library with jest to test react application. ... computedStyle(elt, pseudoElt) throws Not implemented errors and makes ...
Read more >Python Exception Handling – NotImplementedError
Struggling with a NotImplementedError in your code? In this blog, we'll go over what it is, how to raise it, and how to...
Read more >python - pytest in VS Code: Point out test failures because of ...
Many functions have been drafted as stubs but not yet implemented, so they raise a NotImplementedError . Likewise, development starts from ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
As far as I explored it happens only when the
real
value is above a certain threshold. Like above 1000. SoR2SW(1.0, 2, 2)
runs fine however,R2SW(1116.0, 2, 2)
crashes. Please take this note with a big grain of salt.Glad you created WurstScript! I very much enjoy using it!
Aaaand thanks for the bug fix. 😃