-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TASK: Prepare Lexer interface for parser use cases
- Loading branch information
Showing
11 changed files
with
552 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Language/Lexer/CharacterStream/CharacterStreamSnapshot.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/** | ||
* PackageFactory.ComponentEngine - Universal View Components for PHP | ||
* Copyright (C) 2023 Contributors of PackageFactory.ComponentEngine | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PackageFactory\ComponentEngine\Language\Lexer\CharacterStream; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class CharacterStreamSnapshot | ||
{ | ||
public function __construct( | ||
public readonly int $byte, | ||
public readonly CursorSnapshot $cursor, | ||
public readonly ?string $characterUnderCursor = null | ||
) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
|
||
/** | ||
* PackageFactory.ComponentEngine - Universal View Components for PHP | ||
* Copyright (C) 2023 Contributors of PackageFactory.ComponentEngine | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PackageFactory\ComponentEngine\Language\Lexer\CharacterStream; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class CursorSnapshot | ||
{ | ||
public function __construct( | ||
public readonly int $currentLineNumber, | ||
public readonly int $currentColumnNumber, | ||
public readonly int $previousLineNumber, | ||
public readonly int $previousColumnNumber | ||
) { | ||
} | ||
} |
Oops, something went wrong.