aboutsummaryrefslogblamecommitdiff
path: root/src/NXP/Classes/Token/TokenComma.php
blob: 9d997e16e0a24e3184a9dcbe1d7ed571930456cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                          
                                                    
   
                                         







                                     



























                                                                        
 
<?php
/**
 * This file is part of the MathExecutor package
 *
 * (c) Alexander Kiryukhin
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code
 */

namespace NXP\Classes\Token;

/**
 * @author Alexander Kiryukhin <a.kiryukhin@mail.ru>
 */
class TokenComma extends AbstractOperator
{
    /**
     * @return string
     */
    public static function getRegex()
    {
        return '\,';
    }

    /**
     * Comma operator is lowest priority
     *
     * @return int
     */
    public function getPriority()
    {
        return 0;
    }

    /**
     * @return string
     */
    public function getAssociation()
    {
        return self::RIGHT_RIGHT;
    }

    /**
     * @param  array       $stack
     * @return TokenNumber
     */
    public function execute(&$stack)
    {
        // Comma operators don't do anything, stack has already executed
    }

}