We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
q::debug
Currently, if I want to add debug statements to an expression like:
foo(bar(1 + 2))
I need to do something like:
q::debug("foo", foo(q::debug("bar", bar(q::debug("plus", 1 + 2))))))
I'd like to also be able to write:
q::debug(foo(q::debug(bar(q::debug(1 + 2))))))
And have Quint print the expressions:
> foo(bar(1 + 2)): 45 > bar(1 + 2): 10 > 1 + 2: 3
Moreover (not this issue), we can also consider having something like:
q::deepDebug(foo(bar(1 + 2)))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, if I want to add debug statements to an expression like:
I need to do something like:
I'd like to also be able to write:
And have Quint print the expressions:
Moreover (not this issue), we can also consider having something like:
The text was updated successfully, but these errors were encountered: