tree-splicer icon indicating copy to clipboard operation
tree-splicer copied to clipboard

Simple grammar-based test case generator

Results 15 tree-splicer issues
Sort by recently updated
recently updated
newest added

tree-splicer could take a page from the test-case reduction literature and perform *hoisting*, where an AST node is replaced by one of its subtrees. This is more likely to produce...

Hey, just wanted to say hi! :D Very cool crate! I have hooked this up into icemaker to automatically generate code from a set of input which then can be...

tree-splicer currently splices only subtrees that have *the exact same node kind*. This is suboptimal, the trees only need to have *compatible* kinds for the result to be syntactically valid.

when I used ````rust const SPLICER_CFG: Config = Config { inter_splices: 100, seed: 0, tests: 100, }; ```` I ran into a bunch of crashes ```` thread '' panicked at...

bug