Fix anonymous function definitions#41
Fix anonymous function definitions#41reiniscirpons wants to merge 1 commit intogap-packages:masterfrom
Conversation
This PR fixes an issue with the `get` and `test` functions. When defining an anonymous nullary function, the proper syntax is `{} -> foo;` to indicate that no arguments are passed.
|
If you are interested in working on or with this package, let me know and I can also give you write access. Right now it is unmaintained :/ |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #41 +/- ##
=======================================
Coverage 42.98% 42.98%
=======================================
Files 2 2
Lines 449 449
Branches 69 69
=======================================
Hits 193 193
Misses 234 234
Partials 22 22 🚀 New features to boost your workflow:
|
|
Hi Max, sadly not a user of ZeroMQInterface myself. This issue just came up when I was working on the tree-sitter grammar yesterday and it was flagged up by the automated corpus tests for the grammar (i.e. these files were not parsing), so I felt I might as well fix it. |
olexandr-konovalov
left a comment
There was a problem hiding this comment.
Thanks - I'm also approving. @fingolfin please feel free to make a release. I have some interest in this package since it's a dependency of Jupyter Kernel, but at the moment I am just happy that it works.
This PR fixes an issue with the
getandtestfunctions. When defining an anonymous nullary function, the proper syntax is{} -> foo;to indicate that no arguments are passed.