rewrite-clj

alex 2023-06-14T17:44:17.119539Z

What's the recommended way to check that my current zloc is a let form i.e. how do I check equality against a token: let?

borkdude 2023-06-14T18:30:47.317239Z

You can use z/sexpr and then compare with let or do z/node and then take the :value of the node, this is a safer approach

1