Fork me on GitHub
#specter
<
2019-06-05
>
lvh20:06:29

Is there a way to run specter but without eval being called ever (I'm trying to get it working under Graal -- and for my recursive path, closed-code still ends up getting called, and that relies on eval even when using select*)

nathanmarz20:06:36

@lvh if you avoid all the macros eval won't be called

nathanmarz20:06:41

recursive-path calls down to path

nathanmarz20:06:53

which is what generates code that calls eval

nathanmarz20:06:26

recursive-path is just a helper, so you could probably construct a recursive path with no dynamic parameters by making your own helper