mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Oops. Left icode output on by default, now off.
This commit is contained in:
parent
0013224436
commit
67730faf1f
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user