Oops. Left icode output on by default, now off.

This commit is contained in:
rogerl%netscape.com 2000-08-04 20:37:42 +00:00
parent 0013224436
commit 67730faf1f
2 changed files with 6 additions and 2 deletions

View File

@ -235,7 +235,9 @@ static void readEvalPrint(FILE *in, World &world)
// list of zero or more statements
ICodeModule* icm = cx.genCode(parsedStatements, ConsoleName);
if (icm) {
stdOut << *icm;
#ifdef SHOW_ICODE
stdOut << *icm;
#endif
JSValue result = cx.interpret(icm, JSValues());
stdOut << "result = " << result << "\n";
delete icm;

View File

@ -235,7 +235,9 @@ static void readEvalPrint(FILE *in, World &world)
// list of zero or more statements
ICodeModule* icm = cx.genCode(parsedStatements, ConsoleName);
if (icm) {
stdOut << *icm;
#ifdef SHOW_ICODE
stdOut << *icm;
#endif
JSValue result = cx.interpret(icm, JSValues());
stdOut << "result = " << result << "\n";
delete icm;