示例#1
0
文件: Hip.php 项目: mario-deluna/hip
 /**
  * Transform jane code to the target language
  *
  * @param string 			$code
  * @return string
  */
 public static function write($code)
 {
     $compiler = new Compiler(static::parse($code));
     return $compiler->transform();
 }