Stop collapsing hidden symbols upon reducing them. Sadly, this messes up the ability to re-use parse trees. Instead, for now, hide these nodes when stringifying parse trees
11 lines
222 B
C++
11 lines
222 B
C++
#include "runtime_spec_helper.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
const char *args[] = {
|
|
"",
|
|
"--no-color",
|
|
"--only="
|
|
""
|
|
};
|
|
return bandit::run(4, const_cast<char **>(args));
|
|
}
|