コード例 #1
0
 private function assertEval($value, $string)
 {
     $this->assertEqual($value, XHPASTTree::newStatementFromString($string)->evalStatic(), $string);
 }
コード例 #2
0
 private function assertStringVariables($expected, $string)
 {
     $statement = XHPASTTree::newStatementFromString($string);
     $this->assertEqual($expected, $statement->getChildByIndex(0)->getStringVariables(), $string);
 }