-
Notifications
You must be signed in to change notification settings - Fork 98
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
wasm extractor - fix report parameters #1775
Conversation
Coverage SummaryTotals
FilesExpand
|
Contract comparison - from 390d18d to c88c59d
|
} else if is_panic_without_message_triggered(data_section) { | ||
has_panic = WITHOUT_MESSAGE; | ||
allocator_trigger |= is_fail_allocator_triggered(data_section.clone()); | ||
match has_panic { |
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.
This match belongs to a method in PanicMessage
. Something like max_severity
. We should also have a separate function that gives the PanicMessage for the current section.
We should also rename it to something like PanicReport or PanicStatus, since it is a flag, rather than just a message.
No description provided.