blob: bf48b4e0953c61900eda7d9ba3e3305125985a8a [file] [log] [blame]
<?php
/**
* File containing the ezcTemplateConcatOperatorTstNode 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 ezcTemplateConcatOperatorTstNode extends ezcTemplateOperatorTstNode
{
/**
* Constructs a new ezcTemplateConcatOperatorTstNode.
*
* @param ezcTemplateSource $source
* @param ezcTemplateCursor $start
* @param ezcTemplateCursor $end
*/
public function __construct( ezcTemplateSourceCode $source, /*ezcTemplateCursor*/ $start, /*ezcTemplateCursor*/ $end )
{
parent::__construct( $source, $start, $end,
7, 1, self::LEFT_ASSOCIATIVE,
'.' );
}
}
?>