Skip to content

Commit 6a0e355

Browse files
committed
Refactor entire code base to use PHP 8.1 features
And set license to GPL-3.0-or-later
1 parent 822b8cf commit 6a0e355

File tree

94 files changed

+5162
-4374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+5162
-4374
lines changed

LICENSE

+674
Large diffs are not rendered by default.

alt.afx

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
from ./Button.afx import Button;
2+
3+
export meta @styleguide {
4+
title: "Card"
5+
props: {
6+
type: CardType.DEFAULT
7+
content: "Hello World"
8+
button: <Button>Click here!</Button>
9+
}
10+
}
11+
12+
export enum CardType {
13+
DEFAULT,
14+
DECORATIVE
15+
}
16+
17+
export interface Card {
18+
type: CardType
19+
content: Slot
20+
button: Button
21+
items: Button[]
22+
}
23+
24+
export component rendering Card {
25+
<div
26+
class={match (type) {
27+
CardType.DEFAULT => "card--default",
28+
CardType.DECORATIVE => "card--decorative",
29+
}}
30+
>
31+
{content}
32+
{button}
33+
<ul>
34+
{items.map((item) => <li>{item}</li>)}
35+
</ul>
36+
</div>
37+
}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "packagefactory/componentengine",
33
"type": "library",
4-
"license": "MIT",
4+
"license": "GPL-3.0-or-later",
55
"authors": [
66
{
77
"name": "Wilhelm Behncke",

src/Debug/Cli/SourcePrinter.php

+41-69
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
/**
4+
* PackageFactory.ComponentEngine - Universal View Components for PHP
5+
* Copyright (C) 2022 Contributors of PackageFactory.ComponentEngine
6+
*
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
declare(strict_types=1);
22+
223
namespace PackageFactory\ComponentEngine\Debug\Cli;
324

425
use PackageFactory\ComponentEngine\Parser\Lexer\LineIterator;
@@ -7,98 +28,49 @@
728

829
final class SourcePrinter
930
{
10-
/**
11-
* @var Source
12-
*/
13-
private $source;
14-
15-
/**
16-
* @var null|Token
17-
*/
18-
private $token;
19-
20-
/**
21-
* @var null|int
22-
*/
23-
private $fromRow;
24-
25-
/**
26-
* @var null|int
27-
*/
28-
private $toRow;
29-
30-
/**
31-
* @param Source $source
32-
* @param null|Token $token
33-
* @param integer $fromRow
34-
* @param integer $toRow
35-
*/
3631
private function __construct(
37-
Source $source,
38-
?Token $token,
39-
?int $fromRow,
40-
?int $toRow
32+
private readonly Source $source,
33+
private readonly ?Token $token,
34+
private readonly ?int $fromRow,
35+
private readonly ?int $toRow
4136
) {
42-
$this->source = $source;
43-
$this->token = $token;
44-
$this->fromRow = $fromRow;
45-
$this->toRow = $toRow;
4637
}
4738

48-
/**
49-
* @param Source $source
50-
* @return self
51-
*/
5239
public static function fromSource(Source $source): self
5340
{
5441
return new self($source, null, null, null);
5542
}
5643

57-
/**
58-
* @param Token $token
59-
* @return self
60-
*/
6144
public static function fromToken(Token $token): self
6245
{
6346
return new self(
64-
$token->getSource(),
65-
$token,
66-
$token->getStart()->getRowIndex() - 2,
67-
$token->getStart()->getRowIndex() + 2
47+
source: $token->source,
48+
token: $token,
49+
fromRow: $token->start->rowIndex - 2,
50+
toRow: $token->start->rowIndex + 2
6851
);
6952
}
7053

71-
/**
72-
* @param int $fromRow
73-
* @return self
74-
*/
7554
public function withFromRow(int $fromRow): self
7655
{
7756
return new self(
78-
$this->source,
79-
$this->token,
80-
$fromRow,
81-
$this->toRow
57+
source: $this->source,
58+
token: $this->token,
59+
fromRow: $fromRow,
60+
toRow: $this->toRow
8261
);
8362
}
8463

85-
/**
86-
* @param int $toRow
87-
* @return self
88-
*/
8964
public function withToRow(int $toRow): self
9065
{
9166
return new self(
92-
$this->source,
93-
$this->token,
94-
$this->fromRow,
95-
$toRow
67+
source: $this->source,
68+
token: $this->token,
69+
fromRow: $this->fromRow,
70+
toRow: $toRow
9671
);
9772
}
9873

99-
/**
100-
* @return void
101-
*/
10274
public function print(): void
10375
{
10476
foreach (LineIterator::fromSource($this->source) as $line) {
@@ -110,14 +82,14 @@ public function print(): void
11082

11183
foreach ($line as $token) {
11284
if ($this->token !== null && $this->token->equals($token)) {
113-
print("\033[91m" . $token->getValue() . "\033[0m");
85+
print("\033[91m" . $token->value . "\033[0m");
11486
} else {
115-
print($token->getValue());
87+
print($token->value);
11688
}
11789
}
11890

11991
print(PHP_EOL);
12092
}
12193
}
12294
}
123-
}
95+
}

src/Exception/ParserFailed.php

+44-30
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
/**
4+
* PackageFactory.ComponentEngine - Universal View Components for PHP
5+
* Copyright (C) 2022 Contributors of PackageFactory.ComponentEngine
6+
*
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
declare(strict_types=1);
22+
223
namespace PackageFactory\ComponentEngine\Exception;
324

425
use PackageFactory\ComponentEngine\Parser\Ast\Term;
@@ -8,28 +29,10 @@
829

930
final class ParserFailed extends \Exception
1031
{
11-
/**
12-
* @var null|Token
13-
*/
14-
private $token;
1532

16-
/**
17-
* @param null|Token $token
18-
* @param string $message
19-
*/
20-
private function __construct(?Token $token, string $message)
33+
private function __construct(public readonly ?Token $token, string $message)
2134
{
2235
parent::__construct('Parser failed: ' . $message);
23-
24-
$this->token = $token;
25-
}
26-
27-
/**
28-
* @return null|Token
29-
*/
30-
public function getToken(): ?Token
31-
{
32-
return $this->token;
3336
}
3437

3538
/**
@@ -38,13 +41,13 @@ public function getToken(): ?Token
3841
* @return self
3942
*/
4043
public static function becauseOfUnexpectedToken(
41-
Token $token,
44+
Token $token,
4245
array $expectedTypes = []
4346
): self {
4447
$message = sprintf(
4548
'Encountered unexpected token "%s" of type %s.',
46-
$token->getValue(),
47-
$token->getType()
49+
$token->value,
50+
$token->type->name
4851
);
4952

5053
if ($count = count($expectedTypes)) {
@@ -53,13 +56,13 @@ public static function becauseOfUnexpectedToken(
5356

5457
$message .= sprintf(
5558
' Expected one of %s or %s.',
56-
join(', ', $expectedTypes),
57-
$last
59+
join(', ', array_map(fn (TokenType $type) => $type->name, $expectedTypes)),
60+
$last->name
5861
);
5962
} else {
6063
$message .= sprintf(
6164
' Expected %s.',
62-
$expectedTypes[0]
65+
$expectedTypes[0]->name
6366
);
6467
}
6568
}
@@ -93,7 +96,7 @@ public static function becauseOfUnexpectedTerm(
9396
function (string $type) {
9497
/** @var class-string $type */
9598
return (new \ReflectionClass($type))->getShortName();
96-
},
99+
},
97100
$expectedTypes
98101
)),
99102
$last
@@ -122,11 +125,22 @@ public static function becauseOfUnexpectedEndOfFile(TokenStream $stream): self
122125
public static function becauseOfUnknownOperator(Token $token): self
123126
{
124127
return new self(
125-
$token,
128+
$token,
126129
sprintf(
127130
'Encountered unknown operator "%s".',
128-
$token->getValue()
131+
$token->value
132+
)
133+
);
134+
}
135+
136+
public static function becauseOfUnknownComparator(Token $token): self
137+
{
138+
return new self(
139+
$token,
140+
sprintf(
141+
'Encountered unknown comparator "%s".',
142+
$token->value
129143
)
130144
);
131145
}
132-
}
146+
}

0 commit comments

Comments
 (0)