Don't mention obsolete Issue 548
Review URL: http://codereview.chromium.org/543121 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3665 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
04e9399694
commit
cd86e80a35
@ -134,7 +134,7 @@ int RunMain(int argc, char* argv[]) {
|
|||||||
|
|
||||||
int port_number = -1;
|
int port_number = -1;
|
||||||
bool wait_for_connection = false;
|
bool wait_for_connection = false;
|
||||||
bool support_callback = true;
|
bool support_callback = false;
|
||||||
MainCycleType cycle_type = CycleInCpp;
|
MainCycleType cycle_type = CycleInCpp;
|
||||||
|
|
||||||
for (int i = 1; i < argc; i++) {
|
for (int i = 1; i < argc; i++) {
|
||||||
@ -144,9 +144,7 @@ int RunMain(int argc, char* argv[]) {
|
|||||||
// alone JavaScript engines.
|
// alone JavaScript engines.
|
||||||
continue;
|
continue;
|
||||||
} else if (strcmp(str, "--callback") == 0) {
|
} else if (strcmp(str, "--callback") == 0) {
|
||||||
// TODO(548): implement this.
|
support_callback = true;
|
||||||
printf("Error: debugger agent callback is not supported yet.\n");
|
|
||||||
return 1;
|
|
||||||
} else if (strcmp(str, "--wait-for-connection") == 0) {
|
} else if (strcmp(str, "--wait-for-connection") == 0) {
|
||||||
wait_for_connection = true;
|
wait_for_connection = true;
|
||||||
} else if (strcmp(str, "--main-cycle-in-cpp") == 0) {
|
} else if (strcmp(str, "--main-cycle-in-cpp") == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user