-
Notifications
You must be signed in to change notification settings - Fork 1
feat: add debug dialect #342
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
Conversation
☂️ Python Coverage
Overall Coverage
New Files
Modified FilesNo covered modified files...
|
|
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! |
this feature can be backported since it is non-breaking (since we are at 0.x.y this is not violating semver) |
closes #336 printing this PR adds a new dialect named `debug` to model possible debug related operations, right now this dialect only has an `info` statement that prints a message and optionally some variables feed after the message. Similar to `icecream` we will detect the name of the variable and print the name and value pair of the variable. See below for the printing  cc: @cduck
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.
Nice!
closes #336 printing this PR adds a new dialect named `debug` to model possible debug related operations, right now this dialect only has an `info` statement that prints a message and optionally some variables feed after the message. Similar to `icecream` we will detect the name of the variable and print the name and value pair of the variable. See below for the printing  cc: @cduck
closes #336 printing this PR adds a new dialect named
debug
to model possible debug related operations, right now this dialect only has aninfo
statement that prints a message and optionally some variables feed after the message. Similar toicecream
we will detect the name of the variable and print the name and value pair of the variable. See below for the printingcc: @cduck