blob: 4cd4abd750a3e11b378248ca97aa97d6699c66e8 [file] [log] [blame]
<?php
/**
* File containing the ezcTemplatePreIncrementOperatorTstNode class
*
* @package Template
* @version //autogen//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
* @access private
*/
/**
* Fetching of property value in an expression.
*
* @package Template
* @version //autogen//
* @access private
*/
class ezcTemplatePreIncrementOperatorTstNode extends ezcTemplateModifyingOperatorTstNode
{
/**
*
* @param ezcTemplateSource $source
* @param ezcTemplateCursor $start
* @param ezcTemplateCursor $end
*/
public function __construct( ezcTemplateSourceCode $source, /*ezcTemplateCursor*/ $start, /*ezcTemplateCursor*/ $end )
{
parent::__construct( $source, $start, $end,
10, 2, self::NON_ASSOCIATIVE,
'++' );
$this->maxParameterCount = 1;
}
}
?>