aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/StackEntries/Label.php
blob: e6b995480dadb0ea2a4d2b556b9372572788e492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution\StackEntries;

use Nsfisis\Waddiwasi\Execution\StackEntry;

final class Label extends StackEntry
{
    /**
     * @param int<0, max> $arity
     */
    public function __construct(
        public readonly int $arity,
    ) {
    }
}