| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 // codegen.cc | 127 // codegen.cc |
| 128 DEFINE_bool(lazy, true, "use lazy compilation") | 128 DEFINE_bool(lazy, true, "use lazy compilation") |
| 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 // compilation-cache.cc |
| 137 DEFINE_bool(compilation_cache, true, "enable compilation cache") |
| 138 |
| 136 // debug.cc | 139 // debug.cc |
| 137 DEFINE_bool(remote_debugging, false, "enable remote debugging") | 140 DEFINE_bool(remote_debugging, false, "enable remote debugging") |
| 138 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") | 141 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") |
| 139 DEFINE_bool(debugger_auto_break, false, | 142 DEFINE_bool(debugger_auto_break, false, |
| 140 "automatically set the debug break flag when debugger commands are " | 143 "automatically set the debug break flag when debugger commands are " |
| 141 "in the queue (experimental)") | 144 "in the queue (experimental)") |
| 142 | 145 |
| 143 // execution.cc | 146 // execution.cc |
| 144 DEFINE_bool(call_regexp, false, "allow calls to RegExp objects") | 147 DEFINE_bool(call_regexp, false, "allow calls to RegExp objects") |
| 145 | 148 |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 #undef FLAG | 378 #undef FLAG |
| 376 | 379 |
| 377 #undef DEFINE_bool | 380 #undef DEFINE_bool |
| 378 #undef DEFINE_int | 381 #undef DEFINE_int |
| 379 #undef DEFINE_string | 382 #undef DEFINE_string |
| 380 | 383 |
| 381 #undef FLAG_MODE_DECLARE | 384 #undef FLAG_MODE_DECLARE |
| 382 #undef FLAG_MODE_DEFINE | 385 #undef FLAG_MODE_DEFINE |
| 383 #undef FLAG_MODE_DEFINE_DEFAULTS | 386 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 384 #undef FLAG_MODE_META | 387 #undef FLAG_MODE_META |
| OLD | NEW |