1
0
Fork 0

Decompiler: move TODO warning to comment

This commit is contained in:
Xuefer 2015-06-21 16:09:33 +08:00
parent 5810aaf23e
commit b72c808ac6
1 changed files with 2 additions and 1 deletions

View File

@ -2442,7 +2442,8 @@ class Decompiler
// }}}
}
if ($notHandled) {
echo "\x1B[31m * TODO ", $opname, "\x1B[0m\n";
fprintf(STDERR, "\x1B[31m%s\x1B[0m", " * TODO " . $opname . PHP_EOL);
echo $EX['indent'], "// TODO: ", $opname, PHP_EOL;
}
else {
$this->usedOps[$opc] = true;