Currently, the message generation distribution is fair, unless:
- the first expression in OneOf series is OneOf in parentheses
("1" | "2") | "3" | ... will likely show unexpected results
- the last expression in OneOf series is OneOf in parentheses
"1" | "2" | ("3" | "4") will likely show unexpected results
Proposed solution: make parentheses into a special expression type and analyze them accordingly.
Currently, the message generation distribution is fair, unless:
("1" | "2") | "3" | ...will likely show unexpected results"1" | "2" | ("3" | "4")will likely show unexpected resultsProposed solution: make parentheses into a special expression type and analyze them accordingly.