aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/compiler/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/google/protobuf/compiler/main.cc')
-rw-r--r--src/google/protobuf/compiler/main.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/main.cc b/src/google/protobuf/compiler/main.cc
index 2f3c5b8f..ef37909b 100644
--- a/src/google/protobuf/compiler/main.cc
+++ b/src/google/protobuf/compiler/main.cc
@@ -90,9 +90,12 @@ int main(int argc, char* argv[]) {
"Generate Objective C header and source.");
// JavaScript
- google::protobuf::compiler::js::Generator js_generator;
+ google::protobuf::compiler::js::Generator js_generator(false);
cli.RegisterGenerator("--js_out", &js_generator,
"Generate JavaScript source.");
+ google::protobuf::compiler::js::Generator js_binary_generator(true);
+ cli.RegisterGenerator("--jsbinary_out", &js_binary_generator,
+ "Generate JavaScript binary parse/serialize source.");
return cli.Run(argc, argv);
}