Jade\Compiler::handleCode PHP Method

handleCode() public method

public handleCode ( $input, string $name = '' ) : array
$input
$name string
return array
    public function handleCode($input, $name = '')
    {
        return $this->handleCodePhp($input, $name);
    }

Usage Example

Example #1
0
 public function testNestedParenthesesCount()
 {
     $compiler = new Compiler();
     $code = $compiler->handleCode('b->c(a(d->e->f), g->h)');
     $this->assertSame(3, count($code));
 }
All Usage Examples Of Jade\Compiler::handleCode