syncraft 0.1.9__tar.gz → 0.1.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of syncraft might be problematic. Click here for more details.
- {syncraft-0.1.9 → syncraft-0.1.10}/PKG-INFO +1 -1
- {syncraft-0.1.9 → syncraft-0.1.10}/pyproject.toml +1 -1
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/generator.py +0 -1
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft.egg-info/PKG-INFO +1 -1
- {syncraft-0.1.9 → syncraft-0.1.10}/LICENSE +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/README.md +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/setup.cfg +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/__init__.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/algebra.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/cmd.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/diagnostic.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/dsl.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/parser.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/py.typed +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft/sqlite3.py +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft.egg-info/SOURCES.txt +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft.egg-info/dependency_links.txt +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft.egg-info/requires.txt +0 -0
- {syncraft-0.1.9 → syncraft-0.1.10}/syncraft.egg-info/top_level.txt +0 -0
|
@@ -298,7 +298,6 @@ class Generator(Algebra[GenResult[T], GenState[T]]):
|
|
|
298
298
|
gen = TokenGen(token_type=token_type, text=text, case_sensitive=case_sensitive, regex=regex)
|
|
299
299
|
lazy_self: Algebra[GenResult[T], GenState[T]]
|
|
300
300
|
def token_run(input: GenState[T], use_cache:bool) -> Either[Any, Tuple[GenResult[Token], GenState[T]]]:
|
|
301
|
-
print('token', gen, input)
|
|
302
301
|
if input.ended:
|
|
303
302
|
return Left(Error(None,
|
|
304
303
|
message=f"{input.__class__.__name__} has ended, cannot run token.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|