quasilyte/phpgrep

Incorrect matching of expressions with variables inside them

quasilyte opened this issue · 0 comments

Input:

<?php
$x[0] = $y[0];

pattern: $x = $x.

Actiual: The pattern matches given snippet.
Exepected: It should not.