jaclang 0.7.18__py3-none-any.whl → 0.7.20__py3-none-any.whl

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 jaclang might be problematic. Click here for more details.

Files changed (103) hide show
  1. jaclang/cli/cli.py +2 -2
  2. jaclang/compiler/absyntree.py +1 -1
  3. jaclang/compiler/parser.py +1 -1
  4. jaclang/compiler/passes/ir_pass.py +2 -0
  5. jaclang/compiler/passes/main/__init__.py +1 -1
  6. jaclang/compiler/passes/main/fuse_typeinfo_pass.py +50 -13
  7. jaclang/compiler/passes/main/import_pass.py +29 -1
  8. jaclang/compiler/passes/main/py_collect_dep_pass.py +8 -0
  9. jaclang/compiler/passes/main/registry_pass.py +4 -0
  10. jaclang/compiler/passes/main/sym_tab_build_pass.py +0 -18
  11. jaclang/compiler/passes/main/tests/fixtures/mod_type_assign.jac +7 -0
  12. jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.pyi +3 -0
  13. jaclang/compiler/passes/main/tests/test_import_pass.py +10 -10
  14. jaclang/compiler/passes/main/tests/test_type_check_pass.py +1 -1
  15. jaclang/compiler/passes/main/tests/test_typeinfo_pass.py +23 -1
  16. jaclang/compiler/passes/main/type_check_pass.py +4 -4
  17. jaclang/compiler/passes/tool/jac_formatter_pass.py +58 -30
  18. jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/line_spacing.jac +57 -0
  19. jaclang/compiler/semtable.py +4 -4
  20. jaclang/compiler/symtable.py +5 -0
  21. jaclang/langserve/engine.py +68 -7
  22. jaclang/langserve/tests/test_server.py +3 -3
  23. jaclang/langserve/utils.py +0 -113
  24. jaclang/plugin/tests/test_jaseci.py +23 -4
  25. jaclang/runtimelib/importer.py +3 -0
  26. jaclang/runtimelib/machine.py +45 -3
  27. jaclang/runtimelib/memory.py +1 -1
  28. jaclang/settings.py +4 -0
  29. jaclang/stubs/jaclang/__init__.pyi +5 -0
  30. jaclang/stubs/jaclang/cli/__init__.pyi +0 -0
  31. jaclang/stubs/jaclang/cli/cli.pyi +58 -0
  32. jaclang/stubs/jaclang/cli/cmdreg.pyi +32 -0
  33. jaclang/stubs/jaclang/compiler/__init__.pyi +6 -0
  34. jaclang/stubs/jaclang/compiler/absyntree.pyi +1248 -0
  35. jaclang/stubs/jaclang/compiler/codeloc.pyi +45 -0
  36. jaclang/stubs/jaclang/compiler/compile.pyi +29 -0
  37. jaclang/stubs/jaclang/compiler/constant.pyi +287 -0
  38. jaclang/stubs/jaclang/compiler/generated/__init__.pyi +0 -0
  39. jaclang/stubs/jaclang/compiler/generated/jac_parser.pyi +898 -0
  40. jaclang/stubs/jaclang/compiler/parser.pyi +266 -0
  41. jaclang/stubs/jaclang/compiler/passes/__init__.pyi +3 -0
  42. jaclang/stubs/jaclang/compiler/passes/ir_pass.pyi +40 -0
  43. jaclang/stubs/jaclang/compiler/passes/main/__init__.pyi +27 -0
  44. jaclang/stubs/jaclang/compiler/passes/main/access_modifier_pass.pyi +23 -0
  45. jaclang/stubs/jaclang/compiler/passes/main/def_impl_match_pass.pyi +12 -0
  46. jaclang/stubs/jaclang/compiler/passes/main/def_use_pass.pyi +31 -0
  47. jaclang/stubs/jaclang/compiler/passes/main/fuse_typeinfo_pass.pyi +66 -0
  48. jaclang/stubs/jaclang/compiler/passes/main/import_pass.pyi +34 -0
  49. jaclang/stubs/jaclang/compiler/passes/main/pyast_gen_pass.pyi +178 -0
  50. jaclang/stubs/jaclang/compiler/passes/main/pyast_load_pass.pyi +135 -0
  51. jaclang/stubs/jaclang/compiler/passes/main/pybc_gen_pass.pyi +6 -0
  52. jaclang/stubs/jaclang/compiler/passes/main/pyjac_ast_link_pass.pyi +22 -0
  53. jaclang/stubs/jaclang/compiler/passes/main/pyout_pass.pyi +9 -0
  54. jaclang/stubs/jaclang/compiler/passes/main/registry_pass.pyi +15 -0
  55. jaclang/stubs/jaclang/compiler/passes/main/schedules.pyi +19 -0
  56. jaclang/stubs/jaclang/compiler/passes/main/sub_node_tab_pass.pyi +6 -0
  57. jaclang/stubs/jaclang/compiler/passes/main/sym_tab_build_pass.pyi +147 -0
  58. jaclang/stubs/jaclang/compiler/passes/main/type_check_pass.pyi +11 -0
  59. jaclang/stubs/jaclang/compiler/passes/tool/__init__.pyi +4 -0
  60. jaclang/stubs/jaclang/compiler/passes/tool/fuse_comments_pass.pyi +12 -0
  61. jaclang/stubs/jaclang/compiler/passes/tool/jac_formatter_pass.pyi +134 -0
  62. jaclang/stubs/jaclang/compiler/passes/tool/schedules.pyi +11 -0
  63. jaclang/stubs/jaclang/compiler/passes/transform.pyi +28 -0
  64. jaclang/stubs/jaclang/compiler/passes/utils/__init__.pyi +0 -0
  65. jaclang/stubs/jaclang/compiler/passes/utils/mypy_ast_build.pyi +151 -0
  66. jaclang/stubs/jaclang/compiler/semtable.pyi +35 -0
  67. jaclang/stubs/jaclang/compiler/symtable.pyi +65 -0
  68. jaclang/stubs/jaclang/langserve/__init__.pyi +0 -0
  69. jaclang/stubs/jaclang/langserve/engine.pyi +73 -0
  70. jaclang/stubs/jaclang/langserve/sem_manager.pyi +89 -0
  71. jaclang/stubs/jaclang/langserve/server.pyi +38 -0
  72. jaclang/stubs/jaclang/langserve/utils.pyi +55 -0
  73. jaclang/stubs/jaclang/plugin/__init__.pyi +3 -0
  74. jaclang/stubs/jaclang/plugin/builtin.pyi +12 -0
  75. jaclang/stubs/jaclang/plugin/default.pyi +202 -0
  76. jaclang/stubs/jaclang/plugin/feature.pyi +176 -0
  77. jaclang/stubs/jaclang/plugin/spec.pyi +181 -0
  78. jaclang/stubs/jaclang/runtimelib/__init__.pyi +0 -0
  79. jaclang/stubs/jaclang/runtimelib/architype.pyi +133 -0
  80. jaclang/stubs/jaclang/runtimelib/constructs.pyi +41 -0
  81. jaclang/stubs/jaclang/runtimelib/context.pyi +48 -0
  82. jaclang/stubs/jaclang/runtimelib/importer.pyi +104 -0
  83. jaclang/stubs/jaclang/runtimelib/machine.pyi +6 -0
  84. jaclang/stubs/jaclang/runtimelib/memory.pyi +26 -0
  85. jaclang/stubs/jaclang/runtimelib/utils.pyi +35 -0
  86. jaclang/stubs/jaclang/settings.pyi +35 -0
  87. jaclang/stubs/jaclang/utils/__init__.pyi +0 -0
  88. jaclang/stubs/jaclang/utils/helpers.pyi +18 -0
  89. jaclang/stubs/jaclang/utils/lang_tools.pyi +43 -0
  90. jaclang/stubs/jaclang/utils/log.pyi +3 -0
  91. jaclang/stubs/jaclang/utils/treeprinter.pyi +47 -0
  92. jaclang/tests/fixtures/bar.jac +1 -1
  93. jaclang/tests/fixtures/builtins_test.jac +16 -0
  94. jaclang/tests/fixtures/foo.jac +0 -1
  95. jaclang/tests/fixtures/match_multi_ex.jac +12 -0
  96. jaclang/tests/fixtures/walker_update.jac +19 -0
  97. jaclang/tests/test_cli.py +29 -2
  98. jaclang/tests/test_language.py +70 -2
  99. jaclang/utils/treeprinter.py +1 -1
  100. {jaclang-0.7.18.dist-info → jaclang-0.7.20.dist-info}/METADATA +4 -2
  101. {jaclang-0.7.18.dist-info → jaclang-0.7.20.dist-info}/RECORD +103 -34
  102. {jaclang-0.7.18.dist-info → jaclang-0.7.20.dist-info}/WHEEL +0 -0
  103. {jaclang-0.7.18.dist-info → jaclang-0.7.20.dist-info}/entry_points.txt +0 -0
@@ -522,7 +522,7 @@ class JacLanguageTests(TestCase):
522
522
  self.assertIn("can greet2(**kwargs: Any) {", output)
523
523
  self.assertIn("squares_dict = {x: (x ** 2) for x in numbers};", output)
524
524
  self.assertIn(
525
- '\n\n@ my_decorator \n can say_hello() {\n """Say hello""" ; ', output
525
+ '\n\n@ my_decorator \n can say_hello() {\n\n """Say hello""" ;', output
526
526
  )
527
527
 
528
528
  def test_needs_import_2(self) -> None:
@@ -568,7 +568,7 @@ class JacLanguageTests(TestCase):
568
568
  py_ast.parse(f.read()), mod_path=py_out_path
569
569
  ),
570
570
  ).ir.unparse()
571
- self.assertIn("class X {\n with entry {\n a_b = 67;", output)
571
+ self.assertIn("class X {\n with entry {\n\n a_b = 67;", output)
572
572
  self.assertIn("br = b'Hello\\\\\\\\nWorld'", output)
573
573
  self.assertIn("class Circle {\n can init(radius: float", output)
574
574
  self.assertIn("<>node = 90; \n print(<>node) ;\n}\n", output)
@@ -952,6 +952,64 @@ class JacLanguageTests(TestCase):
952
952
  self.assertIn("Item value: 0", stdout_value)
953
953
  self.assertIn("Created 5 items.", stdout_value)
954
954
 
955
+ def test_walker_dynamic_update(self) -> None:
956
+ """Test dynamic update of a walker during runtime."""
957
+ session = self.fixture_abs_path("bar_walk.session")
958
+ bar_file_path = self.fixture_abs_path("bar.jac")
959
+ update_file_path = self.fixture_abs_path("walker_update.jac")
960
+ captured_output = io.StringIO()
961
+ sys.stdout = captured_output
962
+ cli.enter(
963
+ filename=bar_file_path,
964
+ session=session,
965
+ entrypoint="bar_walk",
966
+ args=[],
967
+ )
968
+ sys.stdout = sys.__stdout__
969
+ stdout_value = captured_output.getvalue()
970
+ expected_output = "Created 5 items."
971
+ self.assertIn(expected_output, stdout_value.split("\n"))
972
+ # Define the new behavior to be added
973
+ new_behavior = """
974
+ # New behavior added during runtime
975
+ can end with `root exit {
976
+ "bar_walk has been updated with new behavior!" |> print;
977
+ disengage;
978
+ }
979
+ }
980
+ """
981
+
982
+ # Backup the original file content
983
+ with open(bar_file_path, "r") as bar_file:
984
+ original_content = bar_file.read()
985
+
986
+ # Update the bar.jac file with new behavior
987
+ with open(bar_file_path, "r+") as bar_file:
988
+ content = bar_file.read()
989
+ last_brace_index = content.rfind("}")
990
+ if last_brace_index != -1:
991
+ updated_content = content[:last_brace_index] + new_behavior
992
+ bar_file.seek(0)
993
+ bar_file.write(updated_content)
994
+ bar_file.truncate()
995
+
996
+ captured_output = io.StringIO()
997
+ sys.stdout = captured_output
998
+
999
+ try:
1000
+ cli.run(
1001
+ filename=update_file_path,
1002
+ )
1003
+ sys.stdout = sys.__stdout__
1004
+ stdout_value = captured_output.getvalue()
1005
+ expected_output = "bar_walk has been updated with new behavior!"
1006
+ self.assertIn(expected_output, stdout_value.split("\n"))
1007
+ finally:
1008
+ # Restore the original content of bar.jac
1009
+ with open(bar_file_path, "w") as bar_file:
1010
+
1011
+ bar_file.write(original_content)
1012
+
955
1013
  def test_object_ref_interface(self) -> None:
956
1014
  """Test class method output."""
957
1015
  captured_output = io.StringIO()
@@ -962,3 +1020,13 @@ class JacLanguageTests(TestCase):
962
1020
  self.assertEqual(len(stdout_value[0]), 32)
963
1021
  self.assertEqual("MyNode(value=0)", stdout_value[1])
964
1022
  self.assertEqual("valid: True", stdout_value[2])
1023
+
1024
+ def test_match_multi_ex(self) -> None:
1025
+ """Test match case with multiple expressions."""
1026
+ captured_output = io.StringIO()
1027
+ sys.stdout = captured_output
1028
+ jac_import("match_multi_ex", base_path=self.fixture_abs_path("./"))
1029
+ sys.stdout = sys.__stdout__
1030
+ stdout_value = captured_output.getvalue().split("\n")
1031
+ self.assertEqual("Ten", stdout_value[0])
1032
+ self.assertEqual("ten", stdout_value[1])
@@ -113,7 +113,7 @@ def print_ast_tree(
113
113
  if node.sym
114
114
  else "<No Symbol is associated with this node>"
115
115
  )
116
- out += f" SymbolPath: {symbol}"
116
+ out += f", SymbolPath: {symbol}"
117
117
  return out
118
118
  elif isinstance(node, Token):
119
119
  return f"{node.__class__.__name__} - {node.value}, {access}"
@@ -1,12 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jaclang
3
- Version: 0.7.18
3
+ Version: 0.7.20
4
4
  Summary: Jac is a unique and powerful programming language that runs on top of Python, offering an unprecedented level of intelligence and intuitive understanding.
5
5
  Home-page: https://jaseci.org
6
6
  License: MIT
7
7
  Keywords: jac,jaclang,jaseci,python,programming-language,machine-learning,artificial-intelligence
8
8
  Author: Jason Mars
9
9
  Author-email: jason@jaseci.org
10
+ Maintainer: Jason Mars
11
+ Maintainer-email: jason@jaseci.org
10
12
  Requires-Python: >=3.11.0,<4.0.0
11
13
  Classifier: License :: OSI Approved :: MIT License
12
14
  Classifier: Programming Language :: Python :: 3
@@ -42,7 +44,7 @@ This is the main source code repository for the [Jac] programming language. It c
42
44
  [Documentation]: https://www.jac-lang.org//learn/guide/
43
45
  [Contributing]: .github/CONTRIBUTING.md
44
46
 
45
- ## What and Why Jac?
47
+ ## What and Why is Jac?
46
48
 
47
49
  - **Native Superset of Python** - Jac is a native superset of python, meaning the entire python ecosystem is directly interoperable with Jac without any trickery (no interop interface needed). Like Typescript is to Javascript, or C++ is to C, Jac is to Python. (every Jac program can be ejected to pure python, and every python program can be transpiled to a Jac program)
48
50
 
@@ -2,34 +2,34 @@ jaclang/__init__.py,sha256=quKqbhKk5CQ0k798jIXMbeAKzQxD0yhOpQGSvYD6TD8,399
2
2
  jaclang/cli/.gitignore,sha256=NYuons2lzuCpCdefMnztZxeSMgtPVJF6R6zSgVDOV20,27
3
3
  jaclang/cli/__init__.py,sha256=7aaPgYddIAHBvkdv36ngbfwsimMnfGaTDcaHYMg_vf4,23
4
4
  jaclang/cli/cli.md,sha256=4BPJGdcyvs_rXgd_DPEGjkKSGe5ureXXYaQsf-_z_LU,5939
5
- jaclang/cli/cli.py,sha256=XbxY2D6j0nRrhqaTBg0_e3f9haiHZNo1jUHbJYxZMUo,15878
5
+ jaclang/cli/cli.py,sha256=P2Hqzpb9q9uR_mbyFb8ojr3ff3oDbcP6m1G1kKWkR80,15911
6
6
  jaclang/cli/cmdreg.py,sha256=5mhzLJnpHfc0Z22qKQgcEOICgBaC95G9gSJZ-R7GqvU,8282
7
7
  jaclang/compiler/.gitignore,sha256=n1k2_xXTorp9PY8hhYM4psHircn-NMaFx95bSgDKopo,10
8
8
  jaclang/compiler/__init__.py,sha256=O1GO5Hb02vRlz7OpYHinQV5lQ7YuNUV9Hgjlc3QWtZg,2780
9
- jaclang/compiler/absyntree.py,sha256=oDHQ7w86auUkTcMwWKdyYIzGHuLAwvlvulVsjDGVx9E,138082
9
+ jaclang/compiler/absyntree.py,sha256=6sFVBPhLJKopwfYYtK3-VQBh9AukXmmUGdE60FVyMaE,138072
10
10
  jaclang/compiler/codeloc.py,sha256=YhJcHjhMCOT6mV1qLehwriuFgW0H2-ntq68k_r8yBs4,2800
11
11
  jaclang/compiler/compile.py,sha256=0d8p4i2LXg2RCu1XfWx_Jq_dx7pK2Zn2VIj-apvX_nI,3389
12
12
  jaclang/compiler/constant.py,sha256=gKccXK4Qf3CWuv8J1oaWrwqdP7CRIf7ndayquRx6Xgs,9007
13
13
  jaclang/compiler/jac.lark,sha256=sUft-A-r45E1aZ6CVZa-yDrtV0VTuVB7KNk7POFf3jg,17299
14
- jaclang/compiler/parser.py,sha256=xyOyP81gurd1zgKMxWYl2iTGcmOqaEDHHch8Fs91Zr0,141276
14
+ jaclang/compiler/parser.py,sha256=7_UJRlp0oPsvhy5NNSugFXe2vyWynJ-weZW8sYHyUqg,141292
15
15
  jaclang/compiler/passes/__init__.py,sha256=0Tw0d130ZjzA05jVcny9cf5NfLjlaM70PKqFnY4zqn4,69
16
- jaclang/compiler/passes/ir_pass.py,sha256=xhPra4i7-zrBYdiuFb_nMgrwejLsSPJchhPEu6C03GM,5554
17
- jaclang/compiler/passes/main/__init__.py,sha256=i37vH_f6706eNvdY3UlfYO0wTjdl0HsWg7vP-pyYItY,947
16
+ jaclang/compiler/passes/ir_pass.py,sha256=8F9YL6dUUm6gP2ZkjIuaYgX7GHwyck5MEB7LYJdAhQc,5607
17
+ jaclang/compiler/passes/main/__init__.py,sha256=DLbOP_7q8jJ9-ME_8A0d_FVk2crh9etTmTGQmtKWLnY,973
18
18
  jaclang/compiler/passes/main/access_modifier_pass.py,sha256=AuE6xgW079Bvs_K02XWVz5qJkCIuizC6t1zIiQ5s-qE,5328
19
19
  jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=yAkwLQm2NBJycJVSmG88Shq0r2GSxTH8goINDfGIHek,4583
20
20
  jaclang/compiler/passes/main/def_use_pass.py,sha256=68Uts_v-R-9mzBXC9EfXpcBEQwqnVcpL2JD0sri88AY,9674
21
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=afe2-0zsfdoP6-hUd2y2zKV_ZFtPpxxapm8q2Mkik4Y,22466
22
- jaclang/compiler/passes/main/import_pass.py,sha256=F7CeHKhFip3zp7FVOCpEsua0HRAudwIQdxyjqOp4JdQ,11702
23
- jaclang/compiler/passes/main/py_collect_dep_pass.py,sha256=OTulloovybZpXJXrQFsKgzXoRsgf-x5UfO6qalhJndg,2447
21
+ jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=-rhK5SN9ORr7gTv9KVS1TGy8_D01X-x6TgNwXY-8hF4,24166
22
+ jaclang/compiler/passes/main/import_pass.py,sha256=9uoC_gxDs3FmLBBzQ8A1YQNHUlWQkAlKi55-AMkM3hs,12690
23
+ jaclang/compiler/passes/main/py_collect_dep_pass.py,sha256=lzMOYH8TarhkJFt0vqvZFknthZ08OjsdO7tO2u2EN40,2834
24
24
  jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=ACUhGsLq34N-Sfo96IAgkTnds9ZY6I7J6okr6rFvPpo,142105
25
25
  jaclang/compiler/passes/main/pyast_load_pass.py,sha256=k-tf5cZVlygDg4BGBYcAznO6w0hM4-0Pdzlwr4Sw48I,94027
26
26
  jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
27
27
  jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=1pW0uLEnhM5hCwVFAREdd_miyr3qTK0h_SJVfR_ryig,8604
28
28
  jaclang/compiler/passes/main/pyout_pass.py,sha256=QWVB-AyVBha3OespP89LMuslRsdG2niZErwtnRPiURM,3191
29
- jaclang/compiler/passes/main/registry_pass.py,sha256=p9Lyaf5v4VtNBrdsyxalnJmjWWNZ1js7LSWYdAfyXvs,5755
29
+ jaclang/compiler/passes/main/registry_pass.py,sha256=dKCfcjSenD3J-msmSd11-mCGgD0h1asX8nFdpo-eyq4,5881
30
30
  jaclang/compiler/passes/main/schedules.py,sha256=tkTUTX8aff6pqQYtqt1h2lRbu_n7bVnAov9KmwwDxy0,1417
31
31
  jaclang/compiler/passes/main/sub_node_tab_pass.py,sha256=25HEJGBbDlJibyW5MV4ShXQ2vmzG3LDreknV-u2nQjk,1184
32
- jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=xitWPNbhKgyJmxD1rvVQltgFqCz4i5IJSOEFMpxkcw8,34892
32
+ jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=evTt5f1ymlKB4KzH1cm7wSnwWjplsFxVXTQpcrYL4b8,34304
33
33
  jaclang/compiler/passes/main/tests/__init__.py,sha256=RgheAgh-SqGTa-4kBOY-V-oz8bzMmDWxavFqwlYjfgE,36
34
34
  jaclang/compiler/passes/main/tests/fixtures/autoimpl.empty.impl.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl/getme.impl.jac,sha256=PUQSEKl0ZCjwhgU23o6qX8wEmnqvT7MSoFn8TVBlFpc,31
@@ -50,9 +50,11 @@ jaclang/compiler/passes/main/tests/fixtures/impl/defs1.jac,sha256=MIYBOmcG4NnxsJ
50
50
  jaclang/compiler/passes/main/tests/fixtures/impl/defs2.jac,sha256=MIYBOmcG4NnxsJcR4f-bposvl5ILfshU0tKJ7qMjjzU,112
51
51
  jaclang/compiler/passes/main/tests/fixtures/impl/imps.jac,sha256=MTVCw95_OwssjB7MtEPTYoHSHcceZAhFLokW8Zaruzg,135
52
52
  jaclang/compiler/passes/main/tests/fixtures/incautoimpl.jac,sha256=WX54UE-AUAfnjva0y9NkSl8-0aJAE1HqO0gw4rtCqhs,71
53
+ jaclang/compiler/passes/main/tests/fixtures/mod_type_assign.jac,sha256=IUlv6j61zOWN8VsuREroxGr3YYIKdTexdJTdmKPYc58,67
53
54
  jaclang/compiler/passes/main/tests/fixtures/multi_def_err.jac,sha256=BxgmNUdz76gKLi6PXnLZE9rartodMgch5ydpGrd25Ec,87
54
55
  jaclang/compiler/passes/main/tests/fixtures/py_imp_test.jac,sha256=hWAfWcavT6cUH9d-Rq35ptzVLFuH16StMp84JTsKia0,922
55
56
  jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.py,sha256=zrZT2YhxNFr6CKAER5NsSosccWzP8rwmV1vUK4OYWLo,69
57
+ jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.pyi,sha256=zrZT2YhxNFr6CKAER5NsSosccWzP8rwmV1vUK4OYWLo,69
56
58
  jaclang/compiler/passes/main/tests/fixtures/pygame_mock/color.py,sha256=pvJICEi1sv2hRU88_fekFPeotv3vFyPs57POOkPHPh8,76
57
59
  jaclang/compiler/passes/main/tests/fixtures/pygame_mock/constants.py,sha256=1i-OHdp8rQJNN_Bv6G4Nd3mBfKAn-V0O4pyR4ewg5kA,61
58
60
  jaclang/compiler/passes/main/tests/fixtures/pygame_mock/display.py,sha256=uzQZvyHHf4iPAodRBuBxrnwx3CpDPbMxcsGRlUB_9GY,29
@@ -60,19 +62,19 @@ jaclang/compiler/passes/main/tests/fixtures/registry.jac,sha256=1G6amtU1zIFCgq09
60
62
  jaclang/compiler/passes/main/tests/fixtures/type_info.jac,sha256=64Im2L-R3YF8DEuTt29QE6mJI5PnFe3PiwcDLKa8gOE,661
61
63
  jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=zWF2l93RjyG0AWyDXdXsMlPWYOhX46d699YqvIETRGY,1836
62
64
  jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=0ieyoeiDSK2m3dmVN00oJK2TdJhxWwxA1lnxT95wz0A,843
63
- jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=gLzqR3fYe4W3_mwmRMoSp9dFLZF8P9d6p-m9SfsYF28,5144
65
+ jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=XR0CaqdEQslYz1GXICpF3wko2PDw-tOnHfvgSWjo8TQ,5158
64
66
  jaclang/compiler/passes/main/tests/test_pyast_build_pass.py,sha256=LIT4TP-nhtftRtY5rNySRQlim-dWMSlkfUvkhZTk4pc,1383
65
67
  jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=6ZpLNYxblzBg6bmWSA0fikNM7nEAR9b9F18LJaO5buM,4679
66
68
  jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py,sha256=If8PE4exN5g9o1NRElNC0XdfIwJAp7M7f69rzmYRYUQ,655
67
69
  jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=Eed94qPmO38GFVV4DARx6G0xaawAoncWfgSHja1wPeQ,1162
68
70
  jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI9FNHTewI2r5HO19-JxNGK_NZ01E,821
69
71
  jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
70
- jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=v2_KmcyX1_fOpReRKM0mUnlFXKVPRvFCMR3Mw9ftytI,2265
71
- jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=ehC0_giLg7NwB7fR10nW5Te8mZ76qmUFxkK1bEjtmrw,129
72
- jaclang/compiler/passes/main/type_check_pass.py,sha256=TdMAzdHYXrKv-vTylGhvxjSDylk0HoOQUa7A4OC1d5A,4208
72
+ jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=zTJieGdiHFunOXkUjv2q8H3h-sPT9uym_uCm6HcQzZU,2265
73
+ jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=o908glXImFXOlKKTUyxp4rxsso0vJbduli5Rvbd3KXE,1017
74
+ jaclang/compiler/passes/main/type_check_pass.py,sha256=6L8yGBmZqNZuYabaJKt19mGse4x3r1YKA0Nr7LVPOtE,4276
73
75
  jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
74
76
  jaclang/compiler/passes/tool/fuse_comments_pass.py,sha256=CSnuWy4gZfTcWKe0Q7LBikBgWe1zJr0QmNUkgrZ7B38,3657
75
- jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=ngLu4qrTXev0NYNcL1feng89xHxTBXzZEQ_AYSZO3Qw,89878
77
+ jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=_A5GJOEf36Vj93cX9qsElNodPVCxBs33qe5LU744m7A,91132
76
78
  jaclang/compiler/passes/tool/schedules.py,sha256=kmbsCazAMizGAdQuZpFky5BPlYlMXqNw7wOUzdi_wBo,432
77
79
  jaclang/compiler/passes/tool/tests/__init__.py,sha256=AeOaZjA1rf6VAr0JqIit6jlcmOzW7pxGr4U1fOwgK_Y,24
78
80
  jaclang/compiler/passes/tool/tests/fixtures/corelib.jac,sha256=RGIOyYW5eyadmOf0H-COpLPMJIIkWOFVERI5dNEM3J8,12581
@@ -92,6 +94,7 @@ jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/comment_alignm
92
94
  jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/comments.jac,sha256=l4A_QcagIjUaN6h119yo77ohV_ixXndXPFlCMRJFpMM,346
93
95
  jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/decorator_stack.jac,sha256=FjrFBbIPL7eD2O17i5RxOLLhOCQrFHUwBMx0yGrgIJ4,544
94
96
  jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/esc_keywords.jac,sha256=EQdOQnHWF7NmM7SuQ4Y77fXUD8vkIBR7TG3G1lCGl0I,72
97
+ jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/line_spacing.jac,sha256=iYDH_Vspx4yLYz-0SlkiIAVjtPo5u6zATGLbxoOnvn8,1043
95
98
  jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/long_names.jac,sha256=f3ptg81A3mub7OdsVlxvX7FInEmT6Y2D55ZacQ7kZQw,734
96
99
  jaclang/compiler/passes/tool/tests/fixtures/general_format_checks/triple_quoted_string.jac,sha256=7Ts6oE3x3x91lJIFQpdko54hrtM6vpMZDi56c5XCkmM,174
97
100
  jaclang/compiler/passes/tool/tests/fixtures/multi_def_err.dot,sha256=muQG45ABv5xlMAnj1F0BZdr9-idH9KaZCT__P4lDHcI,1391
@@ -119,8 +122,8 @@ jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=mTpeE272_OSgW
119
122
  jaclang/compiler/passes/transform.py,sha256=h84ZfyctT_hKVvGtFeO87vqN6p50DqJh94Dk827Alw8,2394
120
123
  jaclang/compiler/passes/utils/__init__.py,sha256=UsI5rUopTUiStAzup4kbPwIwrnC5ofCrqWBCBbM2-k4,35
121
124
  jaclang/compiler/passes/utils/mypy_ast_build.py,sha256=Esf00d-XVgg7WsmmBNxFsmv1x95XFbHlgtOVti3wXaI,27453
122
- jaclang/compiler/semtable.py,sha256=eQC-OipCguEnVW5Zn5t2lYEraGSP-YHOJMxn1ZzfPN0,4993
123
- jaclang/compiler/symtable.py,sha256=KskfOzxUXpvqV-6GGfbJnyKa11Jo7ZX9mmzeaKyo2Y0,9649
125
+ jaclang/compiler/semtable.py,sha256=h6522_kAc6ePfWlCmUk-GbHtO8uct0K7aY5rmvlzFBc,5007
126
+ jaclang/compiler/symtable.py,sha256=gyhL8rIDLGTuFbuNLXilDhNDsErNHdNVxjJv0zOdQdc,9807
124
127
  jaclang/compiler/tests/__init__.py,sha256=qiXa5UNRBanGOcplFKTT9a_9GEyiv7goq1OzuCjDCFE,27
125
128
  jaclang/compiler/tests/fixtures/__init__.py,sha256=udQ0T6rajpW_nMiYKJNckqP8izZ-pH3P4PNTJEln2NU,36
126
129
  jaclang/compiler/tests/fixtures/activity.py,sha256=fSvxYDKufsPeQIrbuh031zHw_hdbRv5iK9mS7dD8E54,263
@@ -133,7 +136,7 @@ jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uh
133
136
  jaclang/compiler/tests/test_importer.py,sha256=glEyjV21nJaCVrDXbF5kkcZYBcCTnmWngdUBbuygAxY,2289
134
137
  jaclang/compiler/tests/test_parser.py,sha256=Sj9Kz1FghESaPpyx_kEvScs4xvz-vgEdH8yyQJ0iB7M,4820
135
138
  jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
136
- jaclang/langserve/engine.py,sha256=3aTIGP0PIu8Wku4xRytsdstqPNe6xwU5QGikyj9jdcY,18015
139
+ jaclang/langserve/engine.py,sha256=FkEW7rqzJW_kdRnU0JLrq_6aGXg5bexeKwvq6j2V89s,20797
137
140
  jaclang/langserve/sem_manager.py,sha256=d5QzT9WVYarZfTg1sUF_pTfNMYb65HLz3vX839b5Jeo,14918
138
141
  jaclang/langserve/server.py,sha256=qkWhsJLaQT2o-obIeOcPqag3B3wANzGFgW5EmC8tYYg,5445
139
142
  jaclang/langserve/tests/__init__.py,sha256=iDM47k6c3vahaWhwxpbkdEOshbmX-Zl5x669VONjS2I,23
@@ -157,8 +160,8 @@ jaclang/langserve/tests/pylsp_jsonrpc/exceptions.py,sha256=NGHeFQawZcjoLUcgDmY3b
157
160
  jaclang/langserve/tests/pylsp_jsonrpc/streams.py,sha256=R80_FvICIkrbdGmNtlemWYaxrr7-XldPgLaASnyv0W8,3332
158
161
  jaclang/langserve/tests/session.py,sha256=3pIRoQjZnsnUWIYnO2SpK7c1PAiHMCFrrStNK2tawRM,9572
159
162
  jaclang/langserve/tests/test_sem_tokens.py,sha256=HWNaA1CK5qxFeipmd4AAvjAbJSEW4-09hY2UHVfvtlc,9897
160
- jaclang/langserve/tests/test_server.py,sha256=FEjC4mmG85sU0O4qykmfu1Ks62mkveKRgpHep4vt3Rk,22908
161
- jaclang/langserve/utils.py,sha256=tDsdEOtZdmJ6Xn8b0Ohwt8fRVNm5qtUC4Cub85CG3Mk,19028
163
+ jaclang/langserve/tests/test_server.py,sha256=psv23hfxQZnq_pGlY1Xf9S2oUJk2QpYMPmCjQ0mRwzc,22910
164
+ jaclang/langserve/utils.py,sha256=rtFO1OYrgU6RmFhNs43anZac79sUwe3oZxlYB0s3CXs,14522
162
165
  jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
163
166
  jaclang/plugin/builtin.py,sha256=Hj8SVcauuhzsPQJBzt8jIfHkSUAcqsKfAFyCPYdBZKA,1300
164
167
  jaclang/plugin/default.py,sha256=oxPO7tud8VqP20BrfnDNpLPtM0kaL00s-1F70X3hvCg,31173
@@ -171,18 +174,81 @@ jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=1c4bSybAw8qRMtLjRk2lM
171
174
  jaclang/plugin/tests/fixtures/simple_node_connection.jac,sha256=KdbpACWtnj92TqQqEunwoI4VKhlnhcJCKMkbgh0Xqxg,1067
172
175
  jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8ICBZEBZzHhqha0xQFFBK_DSI,624
173
176
  jaclang/plugin/tests/test_features.py,sha256=p0N5inZn92Cj0eqslmDR0-q6pVG8hkcQfA6CuQcfP3Y,2352
174
- jaclang/plugin/tests/test_jaseci.py,sha256=Vvbb73VwBm3BBLI8uVrq63Esjn5iBPey8UOiHjrFLEc,19755
177
+ jaclang/plugin/tests/test_jaseci.py,sha256=3c5MtOoxxHtMkaWduaqVim1xcv8FyQXkgBh9AC9eNCE,20315
175
178
  jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
179
  jaclang/runtimelib/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
177
180
  jaclang/runtimelib/architype.py,sha256=sqsrobtbHaHDYJaqbXx9iapZ3TJ92APXFzw9bSGnQ90,21659
178
181
  jaclang/runtimelib/constructs.py,sha256=QWut5kKRaBbIelb12cpTSa_D0xDGPOoHHq4SaDetyo8,760
179
182
  jaclang/runtimelib/context.py,sha256=gUiPZ4ZoHoz_vHjxG9kvIw4hlmx8G8lPTquGC6qJoi4,5609
180
- jaclang/runtimelib/importer.py,sha256=dQWPj3n7Ahschq5FRJVy_r6oghNxp3j8o9zi72FEviE,14291
181
- jaclang/runtimelib/machine.py,sha256=QAodSjVm45-0VmhmFRMEJtFp1j3k2VvoiUi117YVS5g,5455
182
- jaclang/runtimelib/memory.py,sha256=GlzdN81728IsTmPLOe70HCDFE_JRHIEWlfDzfjWxn8o,5072
183
+ jaclang/runtimelib/importer.py,sha256=EzttjsUvcmuWkeqjyThRlCzsEu2rVHD8yhzy3WWOlQE,14463
184
+ jaclang/runtimelib/machine.py,sha256=K3HaFNkMFQARSqG63mqHehXGEgRPMXnijSWxcvu3RUs,7248
185
+ jaclang/runtimelib/memory.py,sha256=2A7UbTaY0GxY8ZcMhGFu5SPmY00f4BuHj2sgerb4WXo,5074
183
186
  jaclang/runtimelib/test.py,sha256=HRCl3cf0uPTe58Kcx_sBUb6ow8J53rnmpFOhA7g9oAA,2851
184
187
  jaclang/runtimelib/utils.py,sha256=P9gVE3XFhRzr745RCDXXIP391AcsL4aL_6HrXws_qa4,8155
185
- jaclang/settings.py,sha256=a8q39_6QvMVXGTjAzOwmfYMjk7w3H-iyMCEQADAw5iU,3455
188
+ jaclang/settings.py,sha256=381YK66eXqDSnWhzTHMHfbmvwfQPEI_1yPLa0RFwzKo,3553
189
+ jaclang/stubs/jaclang/__init__.pyi,sha256=1OqVu4Ee_Hod6IkqZfCfDpYTyTEPADSaHh-hJ6YvKVM,83
190
+ jaclang/stubs/jaclang/cli/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
+ jaclang/stubs/jaclang/cli/cli.pyi,sha256=R9yoVZPFXpSiU-MKC5iCBDNNmwCPnCYKwOcZ_JZmwbs,1914
192
+ jaclang/stubs/jaclang/cli/cmdreg.pyi,sha256=bL8qfQjLzdyGjgurg91cPLCA_ryeRLiQTbBoSh9AqnE,946
193
+ jaclang/stubs/jaclang/compiler/__init__.pyi,sha256=wA4fiGcimM9CsYmLkS4Ena_wSpVld_9_R5HmdosTmTA,155
194
+ jaclang/stubs/jaclang/compiler/absyntree.pyi,sha256=RU_5zNe7twgaOicnkcaxaQfN5jRQsVqIfVWWzwvaEPk,37247
195
+ jaclang/stubs/jaclang/compiler/codeloc.pyi,sha256=CbPP3hCDT-zx9jX6z_tt5z9SRLN2U41FQEYbtZxNlv4,1380
196
+ jaclang/stubs/jaclang/compiler/compile.pyi,sha256=UJ_YVHV0ukta3a4nAFcVFCkS-dop1ho2L7le5QeiSw8,1103
197
+ jaclang/stubs/jaclang/compiler/constant.pyi,sha256=Kt6N2G5SPdSrRSz_3_SHHHp6bCgUcZU5QKRJW6CGz6s,5164
198
+ jaclang/stubs/jaclang/compiler/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
+ jaclang/stubs/jaclang/compiler/generated/jac_parser.pyi,sha256=0_QIOTlJ6TuNF8IoiSAUGL2cO56wZSjIb7KNIRh9BSo,26747
200
+ jaclang/stubs/jaclang/compiler/parser.pyi,sha256=sjAIsYTgsoR0I_R0hXb7yEMzjWtCUyyYIFLcC7jsWow,15756
201
+ jaclang/stubs/jaclang/compiler/passes/__init__.pyi,sha256=JU-w7QS91HWHySCdT8pXa5ytChh92SOYxfog99cNqKM,54
202
+ jaclang/stubs/jaclang/compiler/passes/ir_pass.pyi,sha256=M2RkZCWw8UENS6NPiWTxG0bA8q0UXlH-2SJfzBYj6UQ,1699
203
+ jaclang/stubs/jaclang/compiler/passes/main/__init__.pyi,sha256=D1mElpyGk7EML7T8uJr2o0f38ttBvMw7WY-7tGVq5CA,939
204
+ jaclang/stubs/jaclang/compiler/passes/main/access_modifier_pass.pyi,sha256=bqNYm5cb0Mp4gWPmswUSbvB7MfBuODx7kfWkcLR8LZ4,1191
205
+ jaclang/stubs/jaclang/compiler/passes/main/def_impl_match_pass.pyi,sha256=-OpUsnP3wcNJZtxm4UCH8LkJ8bn3uUj8MeqmnCAhpX0,563
206
+ jaclang/stubs/jaclang/compiler/passes/main/def_use_pass.pyi,sha256=RhlAs_fgI4evlvBDS_dxqjrf9q6m5J04L2_l_8G-fF4,1803
207
+ jaclang/stubs/jaclang/compiler/passes/main/fuse_typeinfo_pass.pyi,sha256=QL1HJMP7A1KGbGYezjPVIRy1hOmO1DqBY2dz1gsZNWQ,3380
208
+ jaclang/stubs/jaclang/compiler/passes/main/import_pass.pyi,sha256=l6b0HJOrPqWIALIfwe_ifu63Rwhj2DI5oY35MZPscNc,1472
209
+ jaclang/stubs/jaclang/compiler/passes/main/pyast_gen_pass.pyi,sha256=LVVA7v_We4y1EQcVvWw0rseNB0yV3l7SZ8YBIHysruo,9440
210
+ jaclang/stubs/jaclang/compiler/passes/main/pyast_load_pass.pyi,sha256=-M94qDna7SeXigO7HT8zkSXe7MMyOqAFdB6y2rab3nc,8465
211
+ jaclang/stubs/jaclang/compiler/passes/main/pybc_gen_pass.pyi,sha256=VLFdith6Opct0Dfom4BzIpD_wMuz30XeW7ciGN9-Tt4,219
212
+ jaclang/stubs/jaclang/compiler/passes/main/pyjac_ast_link_pass.pyi,sha256=8D4pkY3lWYg2BEhnHO1vl2zglAfYwfG76SDxG4nKVyU,1125
213
+ jaclang/stubs/jaclang/compiler/passes/main/pyout_pass.pyi,sha256=74Mc1QHfkWqhSlSH1go6xFVejtZe8xgAJWygXl7Yl_k,451
214
+ jaclang/stubs/jaclang/compiler/passes/main/registry_pass.pyi,sha256=sGzyMr_aVTHf-8McwT9sFQgRkaPxlOZ7qsI3JI8HJR0,779
215
+ jaclang/stubs/jaclang/compiler/passes/main/schedules.pyi,sha256=lXFN__a8SU3Z5CNcAlpV1N6B1Isiv9b6pRWiuqvrktQ,983
216
+ jaclang/stubs/jaclang/compiler/passes/main/sub_node_tab_pass.pyi,sha256=cEGhuC-Pu3mkprySWkKQx1ASkMDmWtlM34U8y8JJGMQ,232
217
+ jaclang/stubs/jaclang/compiler/passes/main/sym_tab_build_pass.pyi,sha256=QnI-8jP2jbSecXxHNXoSGWvffmwG5Shm7n2lrfjsw98,9031
218
+ jaclang/stubs/jaclang/compiler/passes/main/type_check_pass.pyi,sha256=w8AT3BbhfT3CNZCkHNB5vfal4N5hKCVcPgMkIX0IABk,412
219
+ jaclang/stubs/jaclang/compiler/passes/tool/__init__.pyi,sha256=GF8sIDo2vYYUi-MgMHym5L_CJmsZGSx24MqnR6fhbM8,181
220
+ jaclang/stubs/jaclang/compiler/passes/tool/fuse_comments_pass.pyi,sha256=PpVj7rc3X9gmYW8pURDPPQ73ShfcSk1PYbi-YbU3Td4,413
221
+ jaclang/stubs/jaclang/compiler/passes/tool/jac_formatter_pass.pyi,sha256=ZpObJ4kwIk1Q4qsEKycIYz2plvcQsPx0fmuPk2guL1A,8147
222
+ jaclang/stubs/jaclang/compiler/passes/tool/schedules.pyi,sha256=i0gDDhWrA8wwr2NZAaP8cBld2DNIpAhnMAKMwLykmQU,350
223
+ jaclang/stubs/jaclang/compiler/passes/transform.pyi,sha256=E1_wSgGFBGuWvs1wtOPxMAzA7qh-nw7hrDeZQM1pQak,1019
224
+ jaclang/stubs/jaclang/compiler/passes/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
+ jaclang/stubs/jaclang/compiler/passes/utils/mypy_ast_build.pyi,sha256=-DIS1HgOS9oc5W3n-YiJzAZTxClCLoARgBoDwnrgGrA,4576
226
+ jaclang/stubs/jaclang/compiler/semtable.pyi,sha256=mos_UVQ7jEYjE1PI73lkdpgXZUL1V731fPLwxoo9rao,988
227
+ jaclang/stubs/jaclang/compiler/symtable.pyi,sha256=W9ROUodscC-mhan-YLOJuvZ0kADq97eUjifDYTfckgU,2362
228
+ jaclang/stubs/jaclang/langserve/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ jaclang/stubs/jaclang/langserve/engine.pyi,sha256=-JVl_VkWlEkPPGbiEWYX5BPPJkydzFqMPl1-LKkWOEM,3064
230
+ jaclang/stubs/jaclang/langserve/sem_manager.pyi,sha256=UoThPuG8utAfWbxvM8BMdB5UiYTz_2JxONhbLt5w3tI,3070
231
+ jaclang/stubs/jaclang/langserve/server.pyi,sha256=Mpd74_Z4F_jHzYK0997ry6r_B4vaMtf6YwSjz80myR8,1435
232
+ jaclang/stubs/jaclang/langserve/utils.pyi,sha256=eK4LJrIXRHojDtiwPNRKDEWMtM3BGtG7sOOU70cu5_g,2578
233
+ jaclang/stubs/jaclang/plugin/__init__.pyi,sha256=nJ_PbfA5pteKVtLwx8UI7R4XBhL2Vyuk87WrL8G7g5o,131
234
+ jaclang/stubs/jaclang/plugin/builtin.pyi,sha256=VZUz7egVH8DOJWQrddbXbu7d9-mNXNcIzEOYWllXs-g,375
235
+ jaclang/stubs/jaclang/plugin/default.pyi,sha256=xh2c1fX5Bi1ADqzh02pYruxJL4wpqa5_6mZnDHlzJgU,5881
236
+ jaclang/stubs/jaclang/plugin/feature.pyi,sha256=nE5GZOF7pY8SFW9_FBtlnKyEZOq6QzuJ3SkYJ0insEE,5511
237
+ jaclang/stubs/jaclang/plugin/spec.pyi,sha256=oU-Ct7xp8T4TVVrcrnEo7DtcfDVKVWMMswGBPadX4L0,5519
238
+ jaclang/stubs/jaclang/runtimelib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ jaclang/stubs/jaclang/runtimelib/architype.pyi,sha256=h4ziAXZHu-S91uN034V64YUL0iPiPTOmI4mgnlNOD3s,4053
240
+ jaclang/stubs/jaclang/runtimelib/constructs.pyi,sha256=Fwh_pZHPND3dI9h8vlU9slIJr42YBngOido4FqOXrGs,1005
241
+ jaclang/stubs/jaclang/runtimelib/context.pyi,sha256=p4tQktWmGmEYi3s5cW1DmkUa-qxnYX1edWUBWPL_jtc,1636
242
+ jaclang/stubs/jaclang/runtimelib/importer.pyi,sha256=4Hoas9JJPalXcgKRT346cTpOnhKYWmQCxN5flr46Yfw,3169
243
+ jaclang/stubs/jaclang/runtimelib/machine.pyi,sha256=aYGtlKLLbes5KD3rpiVPwB6AWmRlG1kwCCKo5LgPtr4,165
244
+ jaclang/stubs/jaclang/runtimelib/memory.pyi,sha256=oZuw9nbABKQ7MGtu9tw__VrZucykShQB3yjQcmC9s_Y,1010
245
+ jaclang/stubs/jaclang/runtimelib/utils.pyi,sha256=3Zp-DlJa3Ca3S0mGqYaS2Grq-HHD-EdrOkQKmH3rKbE,1014
246
+ jaclang/stubs/jaclang/settings.pyi,sha256=Rh13kUQyiCC8wE3_gnvcrnCPEbkV85t2XdLiO8KdFfg,979
247
+ jaclang/stubs/jaclang/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
+ jaclang/stubs/jaclang/utils/helpers.pyi,sha256=2O6Whd3jvk8HkYi2stXi0ue-4wDo0COH2bSwKCaLiJM,653
249
+ jaclang/stubs/jaclang/utils/lang_tools.pyi,sha256=-ejc44RTYZ0oJQ3uxe7r0LVaU34NfQN2mjzKnAqSi-4,1392
250
+ jaclang/stubs/jaclang/utils/log.pyi,sha256=dpeXNmOVE9fwMEs3v7S7O5BIaL5xXR6YOhCMPUchSFw,49
251
+ jaclang/stubs/jaclang/utils/treeprinter.pyi,sha256=Bq-fGoap-E0SdtUHzFOTGtsRKAH6p49JqpCvHnAfK6I,1359
186
252
  jaclang/tests/fixtures/abc.jac,sha256=HZvLz6IEt3Snlgg8Czs-N4emLjg4fT3IbTo95d3Gdww,1747
187
253
  jaclang/tests/fixtures/access_checker.jac,sha256=UVoY7sYW-R0ms2HDA4HXQ5xJNiW0vEbY2T5CCY1avus,281
188
254
  jaclang/tests/fixtures/access_modifier.jac,sha256=NJHXbu_N_cWpTkjJnwcHzWkEk2kroaQ8aaalVxPXAW8,2587
@@ -191,9 +257,10 @@ jaclang/tests/fixtures/assign_compr.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4
191
257
  jaclang/tests/fixtures/assign_compr_dup.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
192
258
  jaclang/tests/fixtures/baddy.jac,sha256=waLlwMyW_JCE1x_SuVzRER1RBe1j3XiLTw-0NjznWpI,30
193
259
  jaclang/tests/fixtures/baddy.test.jac,sha256=Uq-Nlf44QUAtbOfDCbc9_ceLxmo31PILDTSzAv8nJq4,33
194
- jaclang/tests/fixtures/bar.jac,sha256=9I50W-KAhOqTwcsCkmug8Grm2cPMAhUwsE_fllIQNm8,781
260
+ jaclang/tests/fixtures/bar.jac,sha256=XZWOrzgMQed2R611DLfzCvWUT4a4gTYZXWRYvizMb18,782
195
261
  jaclang/tests/fixtures/blankwithentry.jac,sha256=lnMDDKyKnldsUIx1AVCIHt47KY3gR2CZYhox8663sLM,53
196
262
  jaclang/tests/fixtures/builtin_dotgen.jac,sha256=1CCJTSmMD1Zt_FkC-poPGyHRV3rIcst616UtYfuLIrE,1830
263
+ jaclang/tests/fixtures/builtins_test.jac,sha256=1eJXipIFpa8IDjKv20TjAW_k4hTtJzNT1cKnQOAVt28,244
197
264
  jaclang/tests/fixtures/byllmissue.jac,sha256=vAwxzbRNx5yOM3HTDSH7wafPYXU7AunBOZmgdsT2rhc,86
198
265
  jaclang/tests/fixtures/chandra_bugs.jac,sha256=vcBjZ4P7S1PPUs-_0Stt779pus95RJTMs1x_-m0w7yY,282
199
266
  jaclang/tests/fixtures/chandra_bugs2.jac,sha256=OZP6JOsIr8WK-joPZ54-LcbVVvtuZ5ILPdkynSSx3uU,559
@@ -222,7 +289,7 @@ jaclang/tests/fixtures/err.impl.jac,sha256=bCW5RiPOoiEiBJCcCEsPsegBTA98mqY57UYiq
222
289
  jaclang/tests/fixtures/err.jac,sha256=Df-QWvUlVa2Tc3QtKXNv4VU63Xefmp_iC-BS-1VuOEI,62
223
290
  jaclang/tests/fixtures/err2.jac,sha256=x8h69NTVMGJa_UicY-CZblLMdeH09myTeiYqNFamiK0,50
224
291
  jaclang/tests/fixtures/err_runtime.jac,sha256=giiZvN1x_cHYWdXtghdzasxYjUp2MNOdH6Pf2H6-aGI,177
225
- jaclang/tests/fixtures/foo.jac,sha256=drzjyixEuhzEGfhLWfVdAQeeOYVcPe-H7h0RM8q8V2I,1141
292
+ jaclang/tests/fixtures/foo.jac,sha256=53v2aODH1u73xi8B4UdxyM8Ow6C29H-se8yNwOXs0lg,1083
226
293
  jaclang/tests/fixtures/game1.jac,sha256=oiTadkrYJRUo6ZkHUi7I54J_0GoTTtsNLhhofTlz0uY,263
227
294
  jaclang/tests/fixtures/gendot_bubble_sort.jac,sha256=2j-SauIfPgmIe5s_pubVxRI7OGwQjL9jHMQnDG6LREk,1542
228
295
  jaclang/tests/fixtures/guess_game.jac,sha256=S2sWoF22SY2PbadKQX45QJFtw9lvzwFvrwbG0kbutPE,856
@@ -245,6 +312,7 @@ jaclang/tests/fixtures/jacsamp.jac,sha256=VUHUn-RvHzTA4v0KNIFuciocqAHsgQp9tfsEvh
245
312
  jaclang/tests/fixtures/jp_importer.jac,sha256=Mfn62rwYk8CANIkCoMf5UFt4SKl042jaU0CHnj-Soiw,414
246
313
  jaclang/tests/fixtures/jp_importer_auto.jac,sha256=-Pvv4wgWe--BKAwMnWtC630ry4c923pzyIY41j1mw-s,372
247
314
  jaclang/tests/fixtures/lambda.jac,sha256=nU4HbPrBdYe6NegJq4LueequaiLCe3KWyTAbL__ibG0,113
315
+ jaclang/tests/fixtures/match_multi_ex.jac,sha256=05XB0B0yMWpA84pCvAnKnpXObpE5fcUedpQ8Rly9Qp0,205
248
316
  jaclang/tests/fixtures/maxfail_run_test.jac,sha256=UMoJSwrmNL7mCI65P8XTKrsYgi7mFvwLS3Dd24BmR6k,160
249
317
  jaclang/tests/fixtures/mtest.impl.jac,sha256=wYsT4feH2JgxxgN217dgbDWooSmD8HBSlzUwJ4jAa8g,76
250
318
  jaclang/tests/fixtures/mtest.jac,sha256=i7aQpJuUw4YMXgJOvGn_lRx-TruJdqBClioPKGUd4mw,67
@@ -279,10 +347,11 @@ jaclang/tests/fixtures/tupleunpack.jac,sha256=AP6rbofc0VmsTNxInY6WLGRKWVY6u8ut0u
279
347
  jaclang/tests/fixtures/tuplytuples.jac,sha256=6qiXn5OV_qn4cqKwROjJ1VuBAh0nbUGpp-5vtH9n_Dg,344
280
348
  jaclang/tests/fixtures/type_info.jac,sha256=4Cw31ef5gny6IS0kLzgeSO-7ArEH1HgFFFip1BGQhZM,316
281
349
  jaclang/tests/fixtures/walker_override.jac,sha256=Ok58ZAgxuV6aECNxYrjbbyAWSiqIbnly3N3O6cD563o,271
350
+ jaclang/tests/fixtures/walker_update.jac,sha256=_bN3ASAN6LpfIQFfDMRnrx2oteM-ef7OrbE91f2qvrs,463
282
351
  jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2Otf_rFnPy8,466
283
352
  jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
284
- jaclang/tests/test_cli.py,sha256=cqGHeL15sy34qJRZyD48Wu6rnOh1ZDHNS3pg0jOJvag,12515
285
- jaclang/tests/test_language.py,sha256=5Vv2wD0PkBLESiNhKCToT3FAeQoQpzSElv_xwg6BVMo,39082
353
+ jaclang/tests/test_cli.py,sha256=7PYJvJeKKb13yyP0TQ_pHbdRowWN5TI7kG-tNUESbaI,13461
354
+ jaclang/tests/test_language.py,sha256=xPanZh7od2rtnskMmSV8iQYXrnx-GoIzZ00ECcqUK_I,41690
286
355
  jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
287
356
  jaclang/tests/test_reference.py,sha256=FISQpZbB8cmRoAeJOFfXUy13WVxykZjpkPSb1OTotfI,3340
288
357
  jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
@@ -293,7 +362,7 @@ jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
293
362
  jaclang/utils/test.py,sha256=27TS33HkjKMy-hb-E4J1qQ3aBVqBPJaI_222ZT7P5TQ,6053
294
363
  jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
295
364
  jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
296
- jaclang/utils/treeprinter.py,sha256=NUAoZxi_aJmtIjhQnZ_pNYUkWkORp-tZM4jl_-XUckk,13296
365
+ jaclang/utils/treeprinter.py,sha256=dMjUHOU-WEyCmjouyaCBefgwM39bZsCzDx-_2eMa5nc,13297
297
366
  jaclang/vendor/__init__.py,sha256=tEcp2kl3hMvF2d6X6WlJSAGuAMYOVCKCstXuPMQSR4Q,265
298
367
  jaclang/vendor/attr/__init__.py,sha256=WlXJN6ICB0Y_HZ0lmuTUgia0kuSdn2p67d4N6cYxNZM,3307
299
368
  jaclang/vendor/attr/__init__.pyi,sha256=u08EujYHy_rSyebNn-I9Xv2S_cXmtA9xWGc0cBsyl18,16976
@@ -1516,7 +1585,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
1516
1585
  jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
1517
1586
  jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
1518
1587
  jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
1519
- jaclang-0.7.18.dist-info/METADATA,sha256=AEdrDMQWk6zb30Ji2LCf-h5DtAnEvzAPkhyc_3dwWC0,4853
1520
- jaclang-0.7.18.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1521
- jaclang-0.7.18.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
1522
- jaclang-0.7.18.dist-info/RECORD,,
1588
+ jaclang-0.7.20.dist-info/METADATA,sha256=oG7H5NxeEfq_LOGtvjxzaK7Df5DrWmXJBO8PUscR7mY,4914
1589
+ jaclang-0.7.20.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1590
+ jaclang-0.7.20.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
1591
+ jaclang-0.7.20.dist-info/RECORD,,