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 // let's analize it, now
Analyst::analize($expression, $struct, $tokens); Analyst::analize($expression, $struct, $tokens);
} }
print_r(Analyst::getUniverse());
return $this; return $this;
} }
} }
+9 -1
Ver Arquivo
@@ -55,7 +55,8 @@ EOT
Mind::write('currentProjectRequiredTip'); Mind::write('currentProjectRequiredTip');
return false; return false;
} }
$startingTime= microtime();
Mind::$lexer= new Lexer(); Mind::$lexer= new Lexer();
$srcs= Mind::$currentProject['sources']; $srcs= Mind::$currentProject['sources'];
@@ -76,6 +77,13 @@ EOT
if(!Mind::$syntaxer->sweep()) if(!Mind::$syntaxer->sweep())
return false; 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; return $this;
} }