| 1 | <?php |
||
| 16 | class InstanceOfOp extends AbstractExpressionCompiler |
||
| 17 | { |
||
| 18 | protected $name = 'PhpParser\Node\Expr\Instanceof_'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * $a instanceof Node |
||
| 22 | * $expr->expr instance of $expr->class |
||
| 23 | * |
||
| 24 | * @param \PhpParser\Node\Expr\Instanceof_ $expr |
||
| 25 | * @param Context $context |
||
| 26 | * @return CompiledExpression |
||
| 27 | */ |
||
| 28 | protected function compile($expr, Context $context) |
||
| 41 | } |
||
| 42 |