You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we have some part of code, which use UNREACHABLE macro to abort because this part was not yet implemented. Is would be nice to have a special macros for these case, because "unreachable" seems to have different semantics.
We can add TODO(msg) macros which will abort the process and print something like:
NOT YET IMPLEMENTED at /path/to/source
feature X is not yet implemented
Also we can have another macros TODO_WITH_LINK(msg, link), which will also print the link to corresponding issue if one exists. It will increase verbosity even more:
NOT YET IMPLEMENTED at /path/to/source
feature X is not yet implemented
Tracking issue: https://github.com/NilFoundation/zkllvm-assigner/issues/...
The text was updated successfully, but these errors were encountered:
Right now we have some part of code, which use
UNREACHABLE
macro to abort because this part was not yet implemented. Is would be nice to have a special macros for these case, because "unreachable" seems to have different semantics.We can add
TODO(msg)
macros which will abort the process and print something like:Also we can have another macros
TODO_WITH_LINK(msg, link)
, which will also print the link to corresponding issue if one exists. It will increase verbosity even more:The text was updated successfully, but these errors were encountered: