OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 // Dev shell flags | 348 // Dev shell flags |
349 // | 349 // |
350 | 350 |
351 DEFINE_bool(help, false, "Print usage message, including flags, on console") | 351 DEFINE_bool(help, false, "Print usage message, including flags, on console") |
352 DEFINE_bool(dump_counters, false, "Dump counters on exit") | 352 DEFINE_bool(dump_counters, false, "Dump counters on exit") |
353 DEFINE_bool(debugger, false, "Enable JavaScript debugger") | 353 DEFINE_bool(debugger, false, "Enable JavaScript debugger") |
354 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " | 354 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " |
355 "debugger agent in another process") | 355 "debugger agent in another process") |
356 DEFINE_bool(debugger_agent, false, "Enable debugger agent") | 356 DEFINE_bool(debugger_agent, false, "Enable debugger agent") |
357 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") | 357 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") |
358 DEFINE_string(map_counters, NULL, "Map counters to a file") | 358 DEFINE_string(map_counters, "", "Map counters to a file") |
359 DEFINE_args(js_arguments, JSArguments(), | 359 DEFINE_args(js_arguments, JSArguments(), |
360 "Pass all remaining arguments to the script. Alias for \"--\".") | 360 "Pass all remaining arguments to the script. Alias for \"--\".") |
361 | 361 |
362 #if defined(WEBOS__) | 362 #if defined(WEBOS__) |
363 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events") | 363 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events") |
364 DEFINE_bool(debug_script_collected_events, false, | 364 DEFINE_bool(debug_script_collected_events, false, |
365 "Enable debugger script collected events") | 365 "Enable debugger script collected events") |
366 #else | 366 #else |
367 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events") | 367 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events") |
368 DEFINE_bool(debug_script_collected_events, true, | 368 DEFINE_bool(debug_script_collected_events, true, |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 #undef FLAG | 538 #undef FLAG |
539 | 539 |
540 #undef DEFINE_bool | 540 #undef DEFINE_bool |
541 #undef DEFINE_int | 541 #undef DEFINE_int |
542 #undef DEFINE_string | 542 #undef DEFINE_string |
543 | 543 |
544 #undef FLAG_MODE_DECLARE | 544 #undef FLAG_MODE_DECLARE |
545 #undef FLAG_MODE_DEFINE | 545 #undef FLAG_MODE_DEFINE |
546 #undef FLAG_MODE_DEFINE_DEFAULTS | 546 #undef FLAG_MODE_DEFINE_DEFAULTS |
547 #undef FLAG_MODE_META | 547 #undef FLAG_MODE_META |
OLD | NEW |