Initial commit

This commit is contained in:
2024-10-01 18:46:03 +02:00
commit e2868cd7bf
16 changed files with 1036 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace NoccyLabs\JEdit\List;
use NoccyLabs\JEdit\Tree\Tree;
use NoccyLabs\JEdit\Tree\Node;
class Entry
{
public function __construct(
public int $depth,
public string|int|null $key,
public ?Node $node,
public bool $closer = false,
)
{ }
}