Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Side by Side Diff: src/flag-definitions.h

Issue 155453: Firefox and Safari both allow calling regular expression objects as... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/execution.cc ('k') | test/mjsunit/regexp-call-as-function.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 // compilation-cache.cc 137 // compilation-cache.cc
138 DEFINE_bool(compilation_cache, true, "enable compilation cache") 138 DEFINE_bool(compilation_cache, true, "enable compilation cache")
139 139
140 // debug.cc 140 // debug.cc
141 DEFINE_bool(remote_debugging, false, "enable remote debugging") 141 DEFINE_bool(remote_debugging, false, "enable remote debugging")
142 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 142 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
143 DEFINE_bool(debugger_auto_break, false, 143 DEFINE_bool(debugger_auto_break, false,
144 "automatically set the debug break flag when debugger commands are " 144 "automatically set the debug break flag when debugger commands are "
145 "in the queue (experimental)") 145 "in the queue (experimental)")
146 146
147 // execution.cc
148 DEFINE_bool(call_regexp, false, "allow calls to RegExp objects")
149
150 // frames.cc 147 // frames.cc
151 DEFINE_int(max_stack_trace_source_length, 300, 148 DEFINE_int(max_stack_trace_source_length, 300,
152 "maximum length of function source code printed in a stack trace.") 149 "maximum length of function source code printed in a stack trace.")
153 150
154 // heap.cc 151 // heap.cc
155 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") 152 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation")
156 DEFINE_int(old_space_size, 0, "size of the old generation") 153 DEFINE_int(old_space_size, 0, "size of the old generation")
157 DEFINE_bool(gc_global, false, "always perform global GCs") 154 DEFINE_bool(gc_global, false, "always perform global GCs")
158 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 155 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
159 DEFINE_bool(trace_gc, false, 156 DEFINE_bool(trace_gc, false,
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 #undef FLAG 379 #undef FLAG
383 380
384 #undef DEFINE_bool 381 #undef DEFINE_bool
385 #undef DEFINE_int 382 #undef DEFINE_int
386 #undef DEFINE_string 383 #undef DEFINE_string
387 384
388 #undef FLAG_MODE_DECLARE 385 #undef FLAG_MODE_DECLARE
389 #undef FLAG_MODE_DEFINE 386 #undef FLAG_MODE_DEFINE
390 #undef FLAG_MODE_DEFINE_DEFAULTS 387 #undef FLAG_MODE_DEFINE_DEFAULTS
391 #undef FLAG_MODE_META 388 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/execution.cc ('k') | test/mjsunit/regexp-call-as-function.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698