Add a missing return statement in JS shell.

This commit is contained in:
Oliver Buchtala 2012-11-29 03:19:00 +01:00 committed by Oliver Buchtala
commit f9d6afbdfe

View file

@ -74,6 +74,7 @@ bool JSShell::RunShell() {
ExecuteScript(source, "(shell)");
}
printf("\n");
return true;
}
std::string JSShell::ReadFile(const std::string& fileName)