aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/ControlFlowResults/Br.php
blob: a9c78b756202a55488b2d6261da9a4192e5edc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution\ControlFlowResults;

use Nsfisis\Waddiwasi\Execution\ControlFlowResult;

final readonly class Br extends ControlFlowResult
{
    protected function __construct(
        public int $label,
    ) {
    }
}