aboutsummaryrefslogtreecommitdiff
path: root/samples/lineprocessor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'samples/lineprocessor.cc')
-rw-r--r--samples/lineprocessor.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/samples/lineprocessor.cc b/samples/lineprocessor.cc
index 505dabf9..2e8092ee 100644
--- a/samples/lineprocessor.cc
+++ b/samples/lineprocessor.cc
@@ -134,7 +134,7 @@ int RunMain(int argc, char* argv[]) {
int port_number = -1;
bool wait_for_connection = false;
- bool support_callback = false;
+ bool support_callback = true;
MainCycleType cycle_type = CycleInCpp;
for (int i = 1; i < argc; i++) {
@@ -144,7 +144,9 @@ int RunMain(int argc, char* argv[]) {
// alone JavaScript engines.
continue;
} else if (strcmp(str, "--callback") == 0) {
- support_callback = true;
+ // TODO(548): implement this.
+ printf("Error: debugger agent callback is not supported yet.\n");
+ return 1;
} else if (strcmp(str, "--wait-for-connection") == 0) {
wait_for_connection = true;
} else if (strcmp(str, "--main-cycle-in-cpp") == 0) {
@@ -408,7 +410,7 @@ v8::Handle<v8::String> ReadLine() {
char* res;
{
v8::Unlocker unlocker;
- res = fgets(buffer, kBufferSize, stdin);
+ res = fgets(buffer, buffer_size, stdin);
}
if (res == NULL) {
v8::Handle<v8::Primitive> t = v8::Undefined();