From 9c737d60552b1239208fd81751da0d22f9070cf3 Mon Sep 17 00:00:00 2001 From: Siva Annamalai Date: Thu, 20 Oct 2016 13:54:35 -0700 Subject: [PATCH] Adjust help message. R=fschneider@google.com Review URL: https://codereview.chromium.org/2441553002 . --- runtime/bin/main.cc | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc index 4126cbcdda9..c953b625dfe 100644 --- a/runtime/bin/main.cc +++ b/runtime/bin/main.cc @@ -963,6 +963,13 @@ static void PrintUsage() { " --warn-on-pause-with-no-debugger\n" " This set is subject to change.\n" " Please see these options (--help --verbose) for further documentation.\n" +"--snapshot-kind=\n" +"--snapshot=\n" +" These snapshot options are used to generate a snapshot of the loaded\n" +" Dart script:\n" +" controls the kind of snapshot, it could be\n" +" script(default), app-aot or app-jit\n" +" specifies the file into which the snapshot is written\n" "--version\n" " Print the VM version.\n"); } else { @@ -987,12 +994,16 @@ static void PrintUsage() { " --warn-on-pause-with-no-debugger\n" " This set is subject to change.\n" " Please see these options for further documentation.\n" +"--snapshot-kind=\n" +"--snapshot=\n" +" These snapshot options are used to generate a snapshot of the loaded\n" +" Dart script:\n" +" controls the kind of snapshot, it could be\n" +" script(default), app-aot or app-jit\n" +" specifies the file into which the snapshot is written\n" "--version\n" " Print the VM version.\n" "\n" -"--snapshot=\n" -" loads Dart script and generates a snapshot in the specified file\n" -"\n" "--trace-loading\n" " enables tracing of library and script loading\n" "\n"