3 * @author Niklas Laxström, Tim Starling
5 * @copyright Copyright © 2010-2012, Niklas Laxström
6 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
13 * Helper for CLDRPluralRuleConverter.
14 * An expression object, representing a region of the input string (for error
15 * messages), the RPN notation used to evaluate it, and the result type for
18 class CLDRPluralRuleConverterExpression
extends CLDRPluralRuleConverterFragment
{
25 function __construct( $parser, $type, $rpn, $pos, $length ) {
26 parent
::__construct( $parser, $pos, $length );
31 public function isType( $type ) {
32 if ( $type === 'range' && ( $this->type
=== 'range' ||
$this->type
=== 'number' ) ) {
35 if ( $type === $this->type
) {