Initial implementation of the Escargot Debugger.

This commit is contained in:
Zoltan Herczeg 2020-02-04 03:06:35 -08:00 committed by Hyukwoo Park
commit a555ac52f6
50 changed files with 2699 additions and 16 deletions

View file

@ -568,6 +568,10 @@ int main(int argc, char* argv[])
seenModule = true;
continue;
}
if (strcmp(argv[i], "--start-debug-server") == 0) {
context->initDebugger(nullptr);
continue;
}
} else { // `-option` case
if (strcmp(argv[i], "-e") == 0) {
runShell = false;