blob: 665b11fd5b6a06a8926bc7a78b8df9c5867fe1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Control;
use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
final readonly class Else_ extends Instr
{
}
|