adjust of a few messages

Esse commit está contido em:
Felipe Nascimento de Moura
2011-02-09 15:32:34 -02:00
commit dfbbb48df2
2 arquivos alterados com 9 adições e 2 exclusões
-1
Ver Arquivo
@@ -67,7 +67,6 @@ class Syntaxer {
// let's analize it, now
Analyst::analize($expression, $struct, $tokens);
}
print_r(Analyst::getUniverse());
return $this;
}
}
+8
Ver Arquivo
@@ -56,6 +56,7 @@ EOT
return false;
}
$startingTime= microtime();
Mind::$lexer= new Lexer();
$srcs= Mind::$currentProject['sources'];
@@ -76,6 +77,13 @@ EOT
if(!Mind::$syntaxer->sweep())
return false;
$endingTime= microtime();
// do NOT print it if you have MANY entities, the webbrowser freezes
//print_r(Analyst::getUniverse());
echo "Time: ".
number_format(((float)$endingTime) - ((float)$startingTime), 4).
"s\n";
return $this;
}