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

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

Issue 2693002: More precise break points and stepping when debugging... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 6 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/debug.cc ('k') | src/full-codegen.h » ('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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 DEFINE_string(testing_serialization_file, "/tmp/serdes", 270 DEFINE_string(testing_serialization_file, "/tmp/serdes",
271 "file in which to serialize heap") 271 "file in which to serialize heap")
272 #endif 272 #endif
273 273
274 // 274 //
275 // Dev shell flags 275 // Dev shell flags
276 // 276 //
277 277
278 DEFINE_bool(help, false, "Print usage message, including flags, on console") 278 DEFINE_bool(help, false, "Print usage message, including flags, on console")
279 DEFINE_bool(dump_counters, false, "Dump counters on exit") 279 DEFINE_bool(dump_counters, false, "Dump counters on exit")
280 DEFINE_bool(debugger, true, "Enable JavaScript debugger") 280 DEFINE_bool(debugger, false, "Enable JavaScript debugger")
281 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " 281 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
282 "debugger agent in another process") 282 "debugger agent in another process")
283 DEFINE_bool(debugger_agent, false, "Enable debugger agent") 283 DEFINE_bool(debugger_agent, false, "Enable debugger agent")
284 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") 284 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
285 DEFINE_string(map_counters, false, "Map counters to a file") 285 DEFINE_string(map_counters, false, "Map counters to a file")
286 DEFINE_args(js_arguments, JSArguments(), 286 DEFINE_args(js_arguments, JSArguments(),
287 "Pass all remaining arguments to the script. Alias for \"--\".") 287 "Pass all remaining arguments to the script. Alias for \"--\".")
288 288
289 // 289 //
290 // Debug only flags 290 // Debug only flags
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 #undef FLAG 442 #undef FLAG
443 443
444 #undef DEFINE_bool 444 #undef DEFINE_bool
445 #undef DEFINE_int 445 #undef DEFINE_int
446 #undef DEFINE_string 446 #undef DEFINE_string
447 447
448 #undef FLAG_MODE_DECLARE 448 #undef FLAG_MODE_DECLARE
449 #undef FLAG_MODE_DEFINE 449 #undef FLAG_MODE_DEFINE
450 #undef FLAG_MODE_DEFINE_DEFAULTS 450 #undef FLAG_MODE_DEFINE_DEFAULTS
451 #undef FLAG_MODE_META 451 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/debug.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698