Beispiel #1
0
 /**
  * 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();
 }