| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 "file in which to serialize heap") | 219 "file in which to serialize heap") |
| 220 #endif | 220 #endif |
| 221 | 221 |
| 222 // | 222 // |
| 223 // Dev shell flags | 223 // Dev shell flags |
| 224 // | 224 // |
| 225 | 225 |
| 226 DEFINE_bool(help, false, "Print usage message, including flags, on console") | 226 DEFINE_bool(help, false, "Print usage message, including flags, on console") |
| 227 DEFINE_bool(dump_counters, false, "Dump counters on exit") | 227 DEFINE_bool(dump_counters, false, "Dump counters on exit") |
| 228 DEFINE_bool(debugger, true, "Enable JavaScript debugger") | 228 DEFINE_bool(debugger, true, "Enable JavaScript debugger") |
| 229 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " |
| 230 "debugger agent in another process") |
| 229 DEFINE_bool(debugger_agent, false, "Enable debugger agent") | 231 DEFINE_bool(debugger_agent, false, "Enable debugger agent") |
| 230 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") | 232 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") |
| 231 DEFINE_string(map_counters, false, "Map counters to a file") | 233 DEFINE_string(map_counters, false, "Map counters to a file") |
| 232 DEFINE_args(js_arguments, JSArguments(), | 234 DEFINE_args(js_arguments, JSArguments(), |
| 233 "Pass all remaining arguments to the script. Alias for \"--\".") | 235 "Pass all remaining arguments to the script. Alias for \"--\".") |
| 234 | 236 |
| 235 // | 237 // |
| 236 // Debug only flags | 238 // Debug only flags |
| 237 // | 239 // |
| 238 #undef FLAG | 240 #undef FLAG |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 #undef FLAG | 358 #undef FLAG |
| 357 | 359 |
| 358 #undef DEFINE_bool | 360 #undef DEFINE_bool |
| 359 #undef DEFINE_int | 361 #undef DEFINE_int |
| 360 #undef DEFINE_string | 362 #undef DEFINE_string |
| 361 | 363 |
| 362 #undef FLAG_MODE_DECLARE | 364 #undef FLAG_MODE_DECLARE |
| 363 #undef FLAG_MODE_DEFINE | 365 #undef FLAG_MODE_DEFINE |
| 364 #undef FLAG_MODE_DEFINE_DEFAULTS | 366 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 365 #undef FLAG_MODE_META | 367 #undef FLAG_MODE_META |
| OLD | NEW |