-
-
Notifications
You must be signed in to change notification settings - Fork 620
Address Panics in boa_engine #3241
Copy link
Copy link
Open
Labels
A-InternalChanges that don't modify execution behaviourChanges that don't modify execution behaviourC-Documentationupdate documentationupdate documentationE-MediumMedium difficulty problemMedium difficulty problem
Metadata
Metadata
Assignees
Labels
A-InternalChanges that don't modify execution behaviourChanges that don't modify execution behaviourC-Documentationupdate documentationupdate documentationE-MediumMedium difficulty problemMedium difficulty problem
Related to #3235.
With Rust v1.72,
clippybegan linting any panics that have missingpanicsdocumentation.Some potential approaches to addressing the panics are: remove the panics and update them to return a
RuntimeError/ImplementationErroror add the documentation to the function that identified as panicking, or a combination of the two of those.#3235 disables the lint, but the panics should be addressed and the lint reenables.