| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 DEFINE_bool(debug_info, true, "add debug information to compiled functions") | 129 DEFINE_bool(debug_info, true, "add debug information to compiled functions") |
| 130 | 130 |
| 131 // compiler.cc | 131 // compiler.cc |
| 132 DEFINE_bool(strict, false, "strict error checking") | 132 DEFINE_bool(strict, false, "strict error checking") |
| 133 DEFINE_int(min_preparse_length, 1024, | 133 DEFINE_int(min_preparse_length, 1024, |
| 134 "Minimum length for automatic enable preparsing") | 134 "Minimum length for automatic enable preparsing") |
| 135 | 135 |
| 136 // debug.cc | 136 // debug.cc |
| 137 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 137 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 138 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 138 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 139 DEFINE_bool(debugger_auto_break, false, |
| 140 "automatically set the debug break flag when debugger commands are " |
| 141 "in the queue (experimental)") |
| 139 | 142 |
| 140 // execution.cc | 143 // execution.cc |
| 141 DEFINE_bool(call_regexp, false, "allow calls to RegExp objects") | 144 DEFINE_bool(call_regexp, false, "allow calls to RegExp objects") |
| 142 | 145 |
| 143 // frames.cc | 146 // frames.cc |
| 144 DEFINE_int(max_stack_trace_source_length, 300, | 147 DEFINE_int(max_stack_trace_source_length, 300, |
| 145 "maximum length of function source code printed in a stack trace.") | 148 "maximum length of function source code printed in a stack trace.") |
| 146 | 149 |
| 147 // heap.cc | 150 // heap.cc |
| 148 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") | 151 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 #undef FLAG | 363 #undef FLAG |
| 361 | 364 |
| 362 #undef DEFINE_bool | 365 #undef DEFINE_bool |
| 363 #undef DEFINE_int | 366 #undef DEFINE_int |
| 364 #undef DEFINE_string | 367 #undef DEFINE_string |
| 365 | 368 |
| 366 #undef FLAG_MODE_DECLARE | 369 #undef FLAG_MODE_DECLARE |
| 367 #undef FLAG_MODE_DEFINE | 370 #undef FLAG_MODE_DEFINE |
| 368 #undef FLAG_MODE_DEFINE_DEFAULTS | 371 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 369 #undef FLAG_MODE_META | 372 #undef FLAG_MODE_META |
| OLD | NEW |