Exemple #1
0
 protected function compile_Expr_StaticPropertyFetch($node, $returnContext)
 {
     $class = Zval::ptrFactory();
     $name = Zval::ptrFactory();
     $this->compileChild($node, 'class', $class);
     $this->compileChild($node, 'name', $name);
     $variable = Zval::variableFactory($name, $class);
     $this->opArray->addCompiledVariable($variable);
     $returnContext->assignZval($variable);
 }