llparse 0.1.4__tar.gz → 0.1.5__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.
Files changed (40) hide show
  1. {llparse-0.1.4 → llparse-0.1.5}/PKG-INFO +1 -1
  2. {llparse-0.1.4 → llparse-0.1.5}/llparse/compilator.py +1 -1
  3. {llparse-0.1.4 → llparse-0.1.5}/llparse.egg-info/PKG-INFO +1 -1
  4. {llparse-0.1.4 → llparse-0.1.5}/pyproject.toml +1 -1
  5. {llparse-0.1.4 → llparse-0.1.5}/LICENSE +0 -0
  6. {llparse-0.1.4 → llparse-0.1.5}/README.md +0 -0
  7. {llparse-0.1.4 → llparse-0.1.5}/llparse/C_compiler.py +0 -0
  8. {llparse-0.1.4 → llparse-0.1.5}/llparse/__init__.py +0 -0
  9. {llparse-0.1.4 → llparse-0.1.5}/llparse/constants.py +0 -0
  10. {llparse-0.1.4 → llparse-0.1.5}/llparse/cython_builder.py +0 -0
  11. {llparse-0.1.4 → llparse-0.1.5}/llparse/debug.py +0 -0
  12. {llparse-0.1.4 → llparse-0.1.5}/llparse/dot.py +0 -0
  13. {llparse-0.1.4 → llparse-0.1.5}/llparse/enumerator.py +0 -0
  14. {llparse-0.1.4 → llparse-0.1.5}/llparse/errors.py +0 -0
  15. {llparse-0.1.4 → llparse-0.1.5}/llparse/frontend.py +0 -0
  16. {llparse-0.1.4 → llparse-0.1.5}/llparse/header.py +0 -0
  17. {llparse-0.1.4 → llparse-0.1.5}/llparse/llparse.py +0 -0
  18. {llparse-0.1.4 → llparse-0.1.5}/llparse/pybuilder/__init__.py +0 -0
  19. {llparse-0.1.4 → llparse-0.1.5}/llparse/pybuilder/builder.py +0 -0
  20. {llparse-0.1.4 → llparse-0.1.5}/llparse/pybuilder/loopchecker.py +0 -0
  21. {llparse-0.1.4 → llparse-0.1.5}/llparse/pybuilder/main_code.py +0 -0
  22. {llparse-0.1.4 → llparse-0.1.5}/llparse/pybuilder/parsemap.py +0 -0
  23. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/containers.py +0 -0
  24. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/front.py +0 -0
  25. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/implementation.py +0 -0
  26. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/namespace.py +0 -0
  27. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/nodes.py +0 -0
  28. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/peephole.py +0 -0
  29. {llparse-0.1.4 → llparse-0.1.5}/llparse/pyfront/transform.py +0 -0
  30. {llparse-0.1.4 → llparse-0.1.5}/llparse/settings.py +0 -0
  31. {llparse-0.1.4 → llparse-0.1.5}/llparse/spanalloc.py +0 -0
  32. {llparse-0.1.4 → llparse-0.1.5}/llparse/test.py +0 -0
  33. {llparse-0.1.4 → llparse-0.1.5}/llparse/trie.py +0 -0
  34. {llparse-0.1.4 → llparse-0.1.5}/llparse.egg-info/SOURCES.txt +0 -0
  35. {llparse-0.1.4 → llparse-0.1.5}/llparse.egg-info/dependency_links.txt +0 -0
  36. {llparse-0.1.4 → llparse-0.1.5}/llparse.egg-info/top_level.txt +0 -0
  37. {llparse-0.1.4 → llparse-0.1.5}/setup.cfg +0 -0
  38. {llparse-0.1.4 → llparse-0.1.5}/tests/test_frontend.py +0 -0
  39. {llparse-0.1.4 → llparse-0.1.5}/tests/test_loop_checker.py +0 -0
  40. {llparse-0.1.4 → llparse-0.1.5}/tests/test_span_allocator.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llparse
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A Parody of llparse written for writing C Parsers with Python
5
5
  Author-email: Vizonex <VizonexBusiness@gmail.com>
6
6
  Requires-Python: >=3.9
@@ -501,7 +501,7 @@ class Pause(Error):
501
501
 
502
502
  assert self.ref.otherwise
503
503
  otherwise = ctx.unwrapNode(self.ref.otherwise.node)
504
- out.append(f"{ctx.currentField()} = (void*) (intptr_t) {otherwise.cachedDecel};")
504
+ out.append(f"{ctx.currentField()} = (void*) (intptr_t) {otherwise.cachedDecel or ('s_n_' + otherwise.ref.id.name)};")
505
505
  out.append(f"return {STATE_ERROR};")
506
506
 
507
507
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llparse
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A Parody of llparse written for writing C Parsers with Python
5
5
  Author-email: Vizonex <VizonexBusiness@gmail.com>
6
6
  Requires-Python: >=3.9
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llparse"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  description = "A Parody of llparse written for writing C Parsers with Python"
5
5
  readme = "README.md"
6
6
  authors = [
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
File without changes
File without changes
File without changes