tree-sitter/spec/runtime/runtime_specs.cc
Max Brunsfeld fbe8b0a905 Fix incremental parsing
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
2014-03-19 19:27:31 -07:00

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));
}