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

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

Issue 5980006: Misc debugger enhancements and bug fixes.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 DEFINE_bool(dump_counters, false, "Dump counters on exit") 349 DEFINE_bool(dump_counters, false, "Dump counters on exit")
350 DEFINE_bool(debugger, false, "Enable JavaScript debugger") 350 DEFINE_bool(debugger, false, "Enable JavaScript debugger")
351 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " 351 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
352 "debugger agent in another process") 352 "debugger agent in another process")
353 DEFINE_bool(debugger_agent, false, "Enable debugger agent") 353 DEFINE_bool(debugger_agent, false, "Enable debugger agent")
354 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging") 354 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
355 DEFINE_string(map_counters, NULL, "Map counters to a file") 355 DEFINE_string(map_counters, NULL, "Map counters to a file")
356 DEFINE_args(js_arguments, JSArguments(), 356 DEFINE_args(js_arguments, JSArguments(),
357 "Pass all remaining arguments to the script. Alias for \"--\".") 357 "Pass all remaining arguments to the script. Alias for \"--\".")
358 358
359 #if defined(WEBOS__)
360 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
361 DEFINE_bool(debug_script_collected_events, false,
362 "Enable debugger script collected events")
363 #else
364 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
365 DEFINE_bool(debug_script_collected_events, true,
366 "Enable debugger script collected events")
367 #endif
368
359 // 369 //
360 // Debug only flags 370 // Debug only flags
361 // 371 //
362 #undef FLAG 372 #undef FLAG
363 #ifdef DEBUG 373 #ifdef DEBUG
364 #define FLAG FLAG_FULL 374 #define FLAG FLAG_FULL
365 #else 375 #else
366 #define FLAG FLAG_READONLY 376 #define FLAG FLAG_READONLY
367 #endif 377 #endif
368 378
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 #undef FLAG 527 #undef FLAG
518 528
519 #undef DEFINE_bool 529 #undef DEFINE_bool
520 #undef DEFINE_int 530 #undef DEFINE_int
521 #undef DEFINE_string 531 #undef DEFINE_string
522 532
523 #undef FLAG_MODE_DECLARE 533 #undef FLAG_MODE_DECLARE
524 #undef FLAG_MODE_DEFINE 534 #undef FLAG_MODE_DEFINE
525 #undef FLAG_MODE_DEFINE_DEFAULTS 535 #undef FLAG_MODE_DEFINE_DEFAULTS
526 #undef FLAG_MODE_META 536 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698