2014-06-23 18:50:03 -07:00
|
|
|
#include "compiler/compiler_spec_helper.h"
|
2013-11-05 22:15:19 -08:00
|
|
|
|
2014-03-09 20:20:49 -07:00
|
|
|
int main(int argc, char *argv[]) {
|
2014-01-03 22:42:05 -08:00
|
|
|
const char *args[] = {
|
|
|
|
|
"",
|
|
|
|
|
"--no-color",
|
|
|
|
|
"--only="
|
2014-06-26 08:52:42 -07:00
|
|
|
// "compiles the javascript"
|
2014-01-03 22:42:05 -08:00
|
|
|
};
|
|
|
|
|
return bandit::run(4, const_cast<char **>(args));
|
2014-03-08 15:26:27 -08:00
|
|
|
}
|