You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package is generating very random code that can be very synthetic.
It will be nice to have an option that will produce more real-world js code.
For example:
the variable should be declared before usage
valid strings and regexps
valid code structures: no use strict in the middle of code, only common patterns to organize the code
I need this for fuzz testing of my package, that is working with the AST-tree, but currently, most of the code that is generated by eslump just break my package at the parse (espree)
The text was updated successfully, but these errors were encountered:
This package is generating very random code that can be very synthetic.
It will be nice to have an option that will produce more real-world js code.
For example:
use strict
in the middle of code, only common patterns to organize the codeI need this for fuzz testing of my package, that is working with the AST-tree, but currently, most of the code that is generated by
eslump
just break my package at theparse
(espree
)The text was updated successfully, but these errors were encountered: