Exakat\Analyzer\Structures\NegativePow::analyze PHP Method

analyze() public method

public analyze ( )
    public function analyze()
    {
        // -3 * 2 == -(3 ** 2) == 9 (not -9)
        $this->atomIs('Sign')->codeIs('-')->outIs('SIGN')->atomIs('Power')->back('first');
        $this->prepareQuery();
    }
NegativePow