phplrt/phplrt

View on GitHub
libs/compiler/src/Node/Statement/RepetitionQuantifierNode.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phplrt\Compiler\Node\Statement;

use Phplrt\Compiler\Node\Node;

/**
 * @internal This is an internal class, please do not use it in your application code.
 * @psalm-internal Phplrt\Compiler
 * @psalm-suppress PropertyNotSetInConstructor
 */
class RepetitionQuantifierNode extends Node
{
    /**
     * @var int<0, max>
     */
    public int $from;

    /**
     * @var int<0, max>|float
     */
    public int|float $to;

    /**
     * @param int<0, max> $from
     * @param float|int<0, max> $to
     */
    public function __construct(int $from, float $to)
    {
        assert($from >= 0, 'Minimal repetition times must be greater or equal than 0');
        assert($to >= 0, 'Maximum repetition times must be greater or equal than 0');

        $this->from = $from;
        $this->to = \is_infinite($to) ? $to : (int) $to;
    }
}