Exakat\Analyzer\Php\UnicodeEscapePartial::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        // Normal string
        $this->atomIs('String')->outIsIE('CONCAT')->tokenIs('T_CONSTANT_ENCAPSED_STRING')->regexIs('noDelimiter', '\\\\\\\\u\\\\{')->back('first');
        $this->prepareQuery();
        // Here/NowDoc string
        $this->atomIs('Heredoc')->outIs('CONCAT')->tokenIs('T_CONSTANT_ENCAPSED_STRING')->regexIs('noDelimiter', '\\\\\\\\u\\\\{')->back('first');
        $this->prepareQuery();
    }
UnicodeEscapePartial