nested binding generators
miner opened this issue · 1 comments
miner commented
Can't handle making a generator for a schema that uses nested bindings. That is, if one binding depends on another binding, the generator is no good. Example:
(hg/sample '[(:= N (int 100)) (:= M (int N 100)) (int+ N M)])
The problem is that all the bindings are generated in parallel without having the values available to dependent bindings.
Note: this works fine with conforms?
. Only the generator is broken.
miner commented
never fixed