Changeset 34728 in webkit for trunk/JavaScriptCore/kjs/Shell.cpp
- Timestamp:
- Jun 21, 2008, 6:35:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/Shell.cpp
r34673 r34728 348 348 349 349 static void runInteractive(GlobalObject* globalObject) 350 { 351 bool done = false; 352 while (!done) { 350 { 351 while (true) { 353 352 #if HAVE(READLINE) 354 353 char* line = readline(interactivePrompt); … … 375 374 printf("%s\n", completion.value()->toString(globalObject->globalExec()).UTF8String().c_str()); 376 375 } 376 printf("\n"); 377 377 } 378 378
Note:
See TracChangeset
for help on using the changeset viewer.