コード例 #1
0
ファイル: ExpLexer.php プロジェクト: emma5021/toba
 public static function process($str)
 {
     $tokenStream = ExpLexer::strToTokens($str);
     ExpLexer::evaluateLiterals($tokenStream);
     ExpLexer::validateTokens($tokenStream);
     return $tokenStream;
 }