jaclang 0.7.27__py3-none-any.whl → 0.7.29__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.
- jaclang/cli/cli.py +3 -0
- jaclang/compiler/absyntree.py +18 -3
- jaclang/compiler/passes/main/__init__.py +1 -1
- jaclang/compiler/passes/main/access_modifier_pass.py +1 -1
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py +62 -33
- jaclang/compiler/passes/main/import_pass.py +284 -63
- jaclang/compiler/passes/main/inheritance_pass.py +103 -0
- jaclang/compiler/passes/main/py_collect_dep_pass.py +5 -5
- jaclang/compiler/passes/main/pyast_load_pass.py +1 -1
- jaclang/compiler/passes/main/schedules.py +2 -0
- jaclang/compiler/passes/main/sym_tab_build_pass.py +17 -0
- jaclang/compiler/passes/main/tests/fixtures/data_spatial_types.jac +130 -0
- jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.py +3 -3
- jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.pyi +3 -3
- jaclang/compiler/passes/main/tests/test_import_pass.py +13 -17
- jaclang/compiler/passes/main/tests/test_type_check_pass.py +24 -0
- jaclang/compiler/passes/main/type_check_pass.py +3 -2
- jaclang/compiler/py_info.py +22 -0
- jaclang/compiler/symtable.py +9 -2
- jaclang/langserve/tests/test_server.py +2 -2
- jaclang/plugin/default.py +82 -50
- jaclang/plugin/feature.py +2 -0
- jaclang/plugin/spec.py +1 -0
- jaclang/runtimelib/architype.py +18 -14
- jaclang/runtimelib/test.py +59 -4
- jaclang/runtimelib/utils.py +15 -0
- jaclang/settings.py +3 -0
- jaclang/tests/fixtures/base_class1.jac +11 -0
- jaclang/tests/fixtures/base_class2.jac +11 -0
- jaclang/tests/fixtures/import_all.jac +7 -0
- jaclang/tests/fixtures/import_all_py.py +8 -0
- jaclang/tests/fixtures/jactest_imported.jac +6 -0
- jaclang/tests/fixtures/jactest_main.jac +22 -0
- jaclang/tests/fixtures/multi_dim_array_split.jac +2 -6
- jaclang/tests/fixtures/test_py.py +12 -0
- jaclang/tests/fixtures/visit_sequence.jac +50 -0
- jaclang/tests/test_cli.py +82 -0
- jaclang/tests/test_language.py +24 -9
- jaclang/utils/helpers.py +9 -1
- jaclang/utils/treeprinter.py +6 -3
- {jaclang-0.7.27.dist-info → jaclang-0.7.29.dist-info}/METADATA +2 -2
- {jaclang-0.7.27.dist-info → jaclang-0.7.29.dist-info}/RECORD +44 -33
- {jaclang-0.7.27.dist-info → jaclang-0.7.29.dist-info}/WHEEL +1 -1
- {jaclang-0.7.27.dist-info → jaclang-0.7.29.dist-info}/entry_points.txt +0 -0
jaclang/tests/test_language.py
CHANGED
|
@@ -118,9 +118,9 @@ class JacLanguageTests(TestCase):
|
|
|
118
118
|
stdout_value = captured_output.getvalue()
|
|
119
119
|
|
|
120
120
|
expected_outputs = [
|
|
121
|
-
"+-- AtomTrailer - Type:
|
|
122
|
-
" +-- Name - arr - Type:
|
|
123
|
-
" +-- IndexSlice - [IndexSlice] - Type: builtins.
|
|
121
|
+
"+-- AtomTrailer - Type: builtins.list[builtins.int]",
|
|
122
|
+
" +-- Name - arr - Type: builtins.list[builtins.list[builtins.int]], SymbolTable: list",
|
|
123
|
+
" +-- IndexSlice - [IndexSlice] - Type: builtins.list[builtins.list[builtins.int]], SymbolTable: None",
|
|
124
124
|
" +-- Token - [,",
|
|
125
125
|
" +-- Int - 1 - Type: Literal[1]?, SymbolTable: None",
|
|
126
126
|
" +-- Token - :,",
|
|
@@ -548,7 +548,7 @@ class JacLanguageTests(TestCase):
|
|
|
548
548
|
return f"Error While Jac to Py AST conversion: {e}"
|
|
549
549
|
|
|
550
550
|
ir = jac_pass_to_pass(py_ast_build_pass, schedule=py_code_gen_typed).ir
|
|
551
|
-
self.assertEqual(len(ir.get_all_sub_nodes(ast.Architype)),
|
|
551
|
+
self.assertEqual(len(ir.get_all_sub_nodes(ast.Architype)), 21)
|
|
552
552
|
captured_output = io.StringIO()
|
|
553
553
|
sys.stdout = captured_output
|
|
554
554
|
jac_import("needs_import_1", base_path=self.fixture_abs_path("./"))
|
|
@@ -611,7 +611,7 @@ class JacLanguageTests(TestCase):
|
|
|
611
611
|
|
|
612
612
|
ir = jac_pass_to_pass(py_ast_build_pass, schedule=py_code_gen_typed).ir
|
|
613
613
|
self.assertEqual(
|
|
614
|
-
len(ir.get_all_sub_nodes(ast.Architype)),
|
|
614
|
+
len(ir.get_all_sub_nodes(ast.Architype)), 27
|
|
615
615
|
) # Because of the Architype from math
|
|
616
616
|
captured_output = io.StringIO()
|
|
617
617
|
sys.stdout = captured_output
|
|
@@ -665,7 +665,7 @@ class JacLanguageTests(TestCase):
|
|
|
665
665
|
|
|
666
666
|
ir = jac_pass_to_pass(py_ast_build_pass, schedule=py_code_gen_typed).ir
|
|
667
667
|
self.assertEqual(
|
|
668
|
-
len(ir.get_all_sub_nodes(ast.Architype)),
|
|
668
|
+
len(ir.get_all_sub_nodes(ast.Architype)), 75
|
|
669
669
|
) # Because of the Architype from other imports
|
|
670
670
|
captured_output = io.StringIO()
|
|
671
671
|
sys.stdout = captured_output
|
|
@@ -873,7 +873,7 @@ class JacLanguageTests(TestCase):
|
|
|
873
873
|
ir = jac_pass_to_pass(py_ast_build_pass, schedule=py_code_gen_typed).ir
|
|
874
874
|
jac_ast = ir.pp()
|
|
875
875
|
self.assertIn(" | +-- String - 'Loop completed normally{}'", jac_ast)
|
|
876
|
-
self.assertEqual(len(ir.get_all_sub_nodes(ast.SubNodeList)),
|
|
876
|
+
self.assertEqual(len(ir.get_all_sub_nodes(ast.SubNodeList)), 586)
|
|
877
877
|
captured_output = io.StringIO()
|
|
878
878
|
sys.stdout = captured_output
|
|
879
879
|
jac_import("deep_convert", base_path=self.fixture_abs_path("./"))
|
|
@@ -1230,5 +1230,20 @@ class JacLanguageTests(TestCase):
|
|
|
1230
1230
|
jac_import("architype_def_bug", base_path=self.fixture_abs_path("./"))
|
|
1231
1231
|
sys.stdout = sys.__stdout__
|
|
1232
1232
|
stdout_value = captured_output.getvalue().split("\n")
|
|
1233
|
-
self.assertIn("
|
|
1234
|
-
self.assertIn("
|
|
1233
|
+
self.assertIn("MyWalker", stdout_value[0])
|
|
1234
|
+
self.assertIn("MyNode", stdout_value[1])
|
|
1235
|
+
|
|
1236
|
+
def test_visit_sequence(self) -> None:
|
|
1237
|
+
"""Test conn assign on edges."""
|
|
1238
|
+
captured_output = io.StringIO()
|
|
1239
|
+
sys.stdout = captured_output
|
|
1240
|
+
jac_import("visit_sequence", base_path=self.fixture_abs_path("./"))
|
|
1241
|
+
sys.stdout = sys.__stdout__
|
|
1242
|
+
self.assertEqual(
|
|
1243
|
+
"walker entry\nwalker enter to root\n"
|
|
1244
|
+
"a-1\na-2\na-3\na-4\na-5\na-6\n"
|
|
1245
|
+
"b-1\nb-2\nb-3\nb-4\nb-5\nb-6\n"
|
|
1246
|
+
"c-1\nc-2\nc-3\nc-4\nc-5\nc-6\n"
|
|
1247
|
+
"walker exit\n",
|
|
1248
|
+
captured_output.getvalue(),
|
|
1249
|
+
)
|
jaclang/utils/helpers.py
CHANGED
|
@@ -165,7 +165,15 @@ def dump_traceback(e: Exception) -> str:
|
|
|
165
165
|
(frame.lineno is not None) and frame.line and frame.line.strip() != ""
|
|
166
166
|
):
|
|
167
167
|
|
|
168
|
-
|
|
168
|
+
# Note: This is CPython internals we're trying to get since python doesn't provide
|
|
169
|
+
# the frames original line but the stripped version so we had to do this.
|
|
170
|
+
line_o = frame.line # Fallback line.
|
|
171
|
+
if hasattr(frame, "_original_line"):
|
|
172
|
+
line_o = frame._original_line.rstrip() # type: ignore [attr-defined]
|
|
173
|
+
elif hasattr(frame, "_original_lines"):
|
|
174
|
+
# https://github.com/python/cpython/issues/106922
|
|
175
|
+
line_o = frame._original_lines.split("\n")[0].rstrip() # type: ignore [attr-defined]
|
|
176
|
+
|
|
169
177
|
if frame.colno is not None and frame.end_colno is not None:
|
|
170
178
|
off_start = byte_offset_to_char_offset(line_o, frame.colno) - 1
|
|
171
179
|
off_end = byte_offset_to_char_offset(line_o, frame.end_colno) - 1
|
jaclang/utils/treeprinter.py
CHANGED
|
@@ -119,7 +119,7 @@ def print_ast_tree(
|
|
|
119
119
|
return f"{node.__class__.__name__} - {node.value}, {access}"
|
|
120
120
|
elif (
|
|
121
121
|
isinstance(node, ast.Module)
|
|
122
|
-
and node.is_raised_from_py
|
|
122
|
+
and node.py_info.is_raised_from_py
|
|
123
123
|
and not print_py_raise
|
|
124
124
|
):
|
|
125
125
|
return f"{node.__class__.__name__} - PythonModuleRaised: {node.name}"
|
|
@@ -202,12 +202,13 @@ def print_ast_tree(
|
|
|
202
202
|
tree_str = f"{root.loc}\t{markers}{__node_repr_in_tree(root)}\n"
|
|
203
203
|
if (
|
|
204
204
|
isinstance(root, ast.Module)
|
|
205
|
-
and root.is_raised_from_py
|
|
205
|
+
and root.py_info.is_raised_from_py
|
|
206
206
|
and not print_py_raise
|
|
207
207
|
):
|
|
208
208
|
kids: list[AstNode] = [
|
|
209
209
|
*filter(
|
|
210
|
-
lambda x: x.is_raised_from_py,
|
|
210
|
+
lambda x: x.py_info.is_raised_from_py,
|
|
211
|
+
root.get_all_sub_nodes(ast.Module),
|
|
211
212
|
)
|
|
212
213
|
]
|
|
213
214
|
else:
|
|
@@ -300,6 +301,8 @@ def _build_symbol_tree_common(
|
|
|
300
301
|
]
|
|
301
302
|
|
|
302
303
|
for k in node.kid:
|
|
304
|
+
if k.name == "builtins":
|
|
305
|
+
continue
|
|
303
306
|
_build_symbol_tree_common(k, children)
|
|
304
307
|
return root
|
|
305
308
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.29
|
|
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
|
|
@@ -2,11 +2,11 @@ jaclang/__init__.py,sha256=dZ4M6x58OM2MXnuyYP6DvHhapXRJG26VyJ8w3WwM1iI,303
|
|
|
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=
|
|
5
|
+
jaclang/cli/cli.py,sha256=oOwM8tbq6HrOcYvoqBiNpT11qPkSofnlpkXXo86zAlU,16837
|
|
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=0c0Eu3TPoo--hxvciM6kn9_A9YKjQOQdXX-yYILWFNM,2742
|
|
9
|
-
jaclang/compiler/absyntree.py,sha256=
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=7XI-zWwLOJ1KeyZqQ4-_ZJPEsLwCBFdpWvuTKEgK60g,141463
|
|
10
10
|
jaclang/compiler/codeloc.py,sha256=clz7ofOE0Rgf7eqco3zEO31mCbG3Skj9-rLooliBeik,2942
|
|
11
11
|
jaclang/compiler/compile.py,sha256=eYoKSLCgzWQBMaRkeXSv1D_EuixEtrFP1iSjxUGtHzs,3773
|
|
12
12
|
jaclang/compiler/constant.py,sha256=gKccXK4Qf3CWuv8J1oaWrwqdP7CRIf7ndayquRx6Xgs,9007
|
|
@@ -14,22 +14,23 @@ jaclang/compiler/jac.lark,sha256=PX9R46947zcu4sITyJ56xQFGArLygPhZj-uulGfAx3M,175
|
|
|
14
14
|
jaclang/compiler/parser.py,sha256=TIz4Wa1zPfgVYWwqkdCcuJcDAMP4yPcFu1WXnb7iPdI,143263
|
|
15
15
|
jaclang/compiler/passes/__init__.py,sha256=0Tw0d130ZjzA05jVcny9cf5NfLjlaM70PKqFnY4zqn4,69
|
|
16
16
|
jaclang/compiler/passes/ir_pass.py,sha256=CgtuBrVjfG7PgTCLNSjxgFffYR5naTC3tIjOjsXx5gk,5597
|
|
17
|
-
jaclang/compiler/passes/main/__init__.py,sha256=
|
|
18
|
-
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=
|
|
17
|
+
jaclang/compiler/passes/main/__init__.py,sha256=m5ukLwMcdoi85Ee80-A-zDLbg81z0ztT2IKhOCegNpE,973
|
|
18
|
+
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=h4R81e8rOanFjArjj2bZvtGphG07Ls_luRYTOqus2BU,5336
|
|
19
19
|
jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=cCOXyL-yyLxIvSyrlhOtVgjJNu0T-RyKx3sP4bFaQ54,8172
|
|
20
20
|
jaclang/compiler/passes/main/def_use_pass.py,sha256=3rfLaQw4mScSedqPCY8vVkvZH77TTOKEbBYYGC0SZnA,9634
|
|
21
|
-
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=
|
|
22
|
-
jaclang/compiler/passes/main/import_pass.py,sha256=
|
|
23
|
-
jaclang/compiler/passes/main/
|
|
21
|
+
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=tLEUzuddDgELAjQwP1L3NEPZ4wYK7HOulNjnw0E1Dl4,26899
|
|
22
|
+
jaclang/compiler/passes/main/import_pass.py,sha256=fvJ1ySHD5et2bqpaNV2JY9Y4g7cxQnNX2QKOWVdbQJQ,22981
|
|
23
|
+
jaclang/compiler/passes/main/inheritance_pass.py,sha256=EXj65jDjFZv-Ayac_12iiGeQUStA87-N0mGvNbAJZjQ,4708
|
|
24
|
+
jaclang/compiler/passes/main/py_collect_dep_pass.py,sha256=TE4h6HLYRE5YdHZK9gtbPPaBJBLOg0g0xSlT_oPzwzY,2874
|
|
24
25
|
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=UGfR-JNRDbvx99RxEf51OAEe3VljylZLQ1hD7eUS8Kk,143389
|
|
25
|
-
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=
|
|
26
|
+
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=VmlR1j0iY60nFF9DrWVwWrvpUDZpXamkfoyF7miqysA,94697
|
|
26
27
|
jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
|
|
27
28
|
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=snbqUIPtPcD9ZKsItOlKGVnujoMGFwF8XNP0GvxS9AI,8628
|
|
28
29
|
jaclang/compiler/passes/main/pyout_pass.py,sha256=QWVB-AyVBha3OespP89LMuslRsdG2niZErwtnRPiURM,3191
|
|
29
30
|
jaclang/compiler/passes/main/registry_pass.py,sha256=BOyBajaUxJ-xQfTOsx-JJcr4-q0hejBZRvNfBPvSFQM,5571
|
|
30
|
-
jaclang/compiler/passes/main/schedules.py,sha256=
|
|
31
|
+
jaclang/compiler/passes/main/schedules.py,sha256=zhpuwqocrxlWU6EgsaDakoNO25pI09zz9_3vVpa7QwE,1498
|
|
31
32
|
jaclang/compiler/passes/main/sub_node_tab_pass.py,sha256=25HEJGBbDlJibyW5MV4ShXQ2vmzG3LDreknV-u2nQjk,1184
|
|
32
|
-
jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=
|
|
33
|
+
jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=n9-nF7fxExTVLBdAXQn2kWJAPU_AoWpLZoRCIDsZsSo,34716
|
|
33
34
|
jaclang/compiler/passes/main/tests/__init__.py,sha256=RgheAgh-SqGTa-4kBOY-V-oz8bzMmDWxavFqwlYjfgE,36
|
|
34
35
|
jaclang/compiler/passes/main/tests/fixtures/autoimpl.empty.impl.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
36
|
jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl/getme.impl.jac,sha256=PUQSEKl0ZCjwhgU23o6qX8wEmnqvT7MSoFn8TVBlFpc,31
|
|
@@ -40,6 +41,7 @@ jaclang/compiler/passes/main/tests/fixtures/base.jac,sha256=2p7bYtxJRK6tUd4Sbn7b
|
|
|
40
41
|
jaclang/compiler/passes/main/tests/fixtures/base2.jac,sha256=7XPrAhNRjiFW00nvwtaJRXkgzVNd6ONiQGjWZ1BLxEs,181
|
|
41
42
|
jaclang/compiler/passes/main/tests/fixtures/blip.jac,sha256=Fx9zqQ8VkiQ6vgzbQv9LWIzNi5S6i0t8vItMr-rmViU,13
|
|
42
43
|
jaclang/compiler/passes/main/tests/fixtures/codegentext.jac,sha256=U9xyk8hDlWM3jUaozQXOD61f5p9SI-_QfDxA68DUYds,562
|
|
44
|
+
jaclang/compiler/passes/main/tests/fixtures/data_spatial_types.jac,sha256=tSak4Lj5LU290a4Sw5L3eSMNoO5YtmNoSMiTaqjb7TA,2384
|
|
43
45
|
jaclang/compiler/passes/main/tests/fixtures/decls.jac,sha256=vPHNZeXuFKLclAFJfe92ajOX7n0ULsvEi5jBoDU-Ns8,123
|
|
44
46
|
jaclang/compiler/passes/main/tests/fixtures/defn_decl_mismatch.jac,sha256=G9DxHjkK50tV7233ZNIaBbUwZL15eZAfqxG-_aCB6tw,312
|
|
45
47
|
jaclang/compiler/passes/main/tests/fixtures/defs_and_uses.jac,sha256=zTTq_0u8ITmODu8rjRloI5Imwf2dICHdiKdOnzcgpbg,901
|
|
@@ -54,8 +56,8 @@ jaclang/compiler/passes/main/tests/fixtures/incautoimpl.jac,sha256=WX54UE-AUAfnj
|
|
|
54
56
|
jaclang/compiler/passes/main/tests/fixtures/mod_type_assign.jac,sha256=IUlv6j61zOWN8VsuREroxGr3YYIKdTexdJTdmKPYc58,67
|
|
55
57
|
jaclang/compiler/passes/main/tests/fixtures/multi_def_err.jac,sha256=BxgmNUdz76gKLi6PXnLZE9rartodMgch5ydpGrd25Ec,87
|
|
56
58
|
jaclang/compiler/passes/main/tests/fixtures/py_imp_test.jac,sha256=hWAfWcavT6cUH9d-Rq35ptzVLFuH16StMp84JTsKia0,922
|
|
57
|
-
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.py,sha256=
|
|
58
|
-
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.pyi,sha256=
|
|
59
|
+
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.py,sha256=Y1RSbBzcwGV_WnF8ialRg5yO_Bv-crpZtU2v7JRsAUk,94
|
|
60
|
+
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/__init__.pyi,sha256=Y1RSbBzcwGV_WnF8ialRg5yO_Bv-crpZtU2v7JRsAUk,94
|
|
59
61
|
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/color.py,sha256=pvJICEi1sv2hRU88_fekFPeotv3vFyPs57POOkPHPh8,76
|
|
60
62
|
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/constants.py,sha256=1i-OHdp8rQJNN_Bv6G4Nd3mBfKAn-V0O4pyR4ewg5kA,61
|
|
61
63
|
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/display.py,sha256=uzQZvyHHf4iPAodRBuBxrnwx3CpDPbMxcsGRlUB_9GY,29
|
|
@@ -64,16 +66,16 @@ jaclang/compiler/passes/main/tests/fixtures/type_info.jac,sha256=64Im2L-R3YF8DEu
|
|
|
64
66
|
jaclang/compiler/passes/main/tests/fixtures/uninitialized_hasvars.jac,sha256=RVxT9k1R_O_daYZJPvOTjZcd8-CX3zlaaIB0Chg2IvU,542
|
|
65
67
|
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=JuemAIeaHf1wcpbkRTQdp_xlqUmSBZg91pLFyxEv1VM,4393
|
|
66
68
|
jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=NJr8d4iS9maoySBMLtxi8a3DJjbcLgEy6GjRgU_nzhM,843
|
|
67
|
-
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=
|
|
69
|
+
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=L376AEgfXM8lFP2KjIdzYjMyLi7NchUtqwwBsYR7lgE,4819
|
|
68
70
|
jaclang/compiler/passes/main/tests/test_pyast_build_pass.py,sha256=LIT4TP-nhtftRtY5rNySRQlim-dWMSlkfUvkhZTk4pc,1383
|
|
69
71
|
jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=6ZpLNYxblzBg6bmWSA0fikNM7nEAR9b9F18LJaO5buM,4679
|
|
70
72
|
jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py,sha256=If8PE4exN5g9o1NRElNC0XdfIwJAp7M7f69rzmYRYUQ,655
|
|
71
73
|
jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=Oe2RD_s2ULqwha0FAkOGzMTlXYR7-pWIx5Na9Gt4rYQ,900
|
|
72
74
|
jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI9FNHTewI2r5HO19-JxNGK_NZ01E,821
|
|
73
75
|
jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
|
|
74
|
-
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=
|
|
76
|
+
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=brndoHO2cnH3FXfznPG6iI6RRyp1R6v5EyH-h-5FAo0,3273
|
|
75
77
|
jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=o908glXImFXOlKKTUyxp4rxsso0vJbduli5Rvbd3KXE,1017
|
|
76
|
-
jaclang/compiler/passes/main/type_check_pass.py,sha256=
|
|
78
|
+
jaclang/compiler/passes/main/type_check_pass.py,sha256=eDVvCO5I46ZUdCc86nZgfrIRi0-gL0KAlM_1RGEPnCY,4343
|
|
77
79
|
jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
|
|
78
80
|
jaclang/compiler/passes/tool/fuse_comments_pass.py,sha256=CSnuWy4gZfTcWKe0Q7LBikBgWe1zJr0QmNUkgrZ7B38,3657
|
|
79
81
|
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=ILagQpjv4wcBlu3dMQ1kaA-X7il1IwICdB9GqcBlPZ4,91207
|
|
@@ -124,8 +126,9 @@ jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=mTpeE272_OSgW
|
|
|
124
126
|
jaclang/compiler/passes/transform.py,sha256=HA7-SiXdlUvJ0jfl-SOBNsmI0E3SAL9NQ-EUtLMM_f8,3325
|
|
125
127
|
jaclang/compiler/passes/utils/__init__.py,sha256=UsI5rUopTUiStAzup4kbPwIwrnC5ofCrqWBCBbM2-k4,35
|
|
126
128
|
jaclang/compiler/passes/utils/mypy_ast_build.py,sha256=s2asjk_WRQ5zGV3PjDoRcL6QPJlAWxza37L0id2LC3Y,35274
|
|
129
|
+
jaclang/compiler/py_info.py,sha256=f-4Ag2bmiBYFdkbzwc7GG2J-Y71sobciLQO2JS9dp7c,759
|
|
127
130
|
jaclang/compiler/semtable.py,sha256=h6522_kAc6ePfWlCmUk-GbHtO8uct0K7aY5rmvlzFBc,5007
|
|
128
|
-
jaclang/compiler/symtable.py,sha256=-
|
|
131
|
+
jaclang/compiler/symtable.py,sha256=-dCIzudNN3we8m3YymyylJAoYNf9prgKLryJ31wm3_Q,10186
|
|
129
132
|
jaclang/compiler/tests/__init__.py,sha256=qiXa5UNRBanGOcplFKTT9a_9GEyiv7goq1OzuCjDCFE,27
|
|
130
133
|
jaclang/compiler/tests/fixtures/__init__.py,sha256=udQ0T6rajpW_nMiYKJNckqP8izZ-pH3P4PNTJEln2NU,36
|
|
131
134
|
jaclang/compiler/tests/fixtures/activity.py,sha256=fSvxYDKufsPeQIrbuh031zHw_hdbRv5iK9mS7dD8E54,263
|
|
@@ -162,14 +165,14 @@ jaclang/langserve/tests/pylsp_jsonrpc/exceptions.py,sha256=NGHeFQawZcjoLUcgDmY3b
|
|
|
162
165
|
jaclang/langserve/tests/pylsp_jsonrpc/streams.py,sha256=R80_FvICIkrbdGmNtlemWYaxrr7-XldPgLaASnyv0W8,3332
|
|
163
166
|
jaclang/langserve/tests/session.py,sha256=3pIRoQjZnsnUWIYnO2SpK7c1PAiHMCFrrStNK2tawRM,9572
|
|
164
167
|
jaclang/langserve/tests/test_sem_tokens.py,sha256=HWNaA1CK5qxFeipmd4AAvjAbJSEW4-09hY2UHVfvtlc,9897
|
|
165
|
-
jaclang/langserve/tests/test_server.py,sha256=
|
|
168
|
+
jaclang/langserve/tests/test_server.py,sha256=Z-RXNuCXFPi67uXkW1hmoJmrb37VFRpRdHJ9vXvBvSQ,22914
|
|
166
169
|
jaclang/langserve/utils.py,sha256=edZCrq8ZFolao-rvv5RGPxtnEh6NmhrxOgPh8VxmEPs,15019
|
|
167
170
|
jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
|
|
168
171
|
jaclang/plugin/builtin.py,sha256=zNTbe5knJrGFgJRa4l4hMzzuij6iXFyVqRTxputUHIo,1307
|
|
169
|
-
jaclang/plugin/default.py,sha256=
|
|
170
|
-
jaclang/plugin/feature.py,sha256=
|
|
172
|
+
jaclang/plugin/default.py,sha256=SzdXIqkbRjFfTJkm2ZBrfMcZ3yyWtF-m6DA5pMWPJww,47451
|
|
173
|
+
jaclang/plugin/feature.py,sha256=MwTG38T0kyCAUiZd_dKFLu4eW6lYKn7LDUObv-iBc1k,17178
|
|
171
174
|
jaclang/plugin/plugin.md,sha256=B252QTH3c8uZyvXTbGmZBafZtdXstFC5vT5jIN_gS4U,9994
|
|
172
|
-
jaclang/plugin/spec.py,sha256=
|
|
175
|
+
jaclang/plugin/spec.py,sha256=c6Syscbo38eDOLfx34YaIa5lW0PUjIc9lgFtEtRBVzg,14748
|
|
173
176
|
jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
|
|
174
177
|
jaclang/plugin/tests/fixtures/graph_purger.jac,sha256=c6kJD-KYYj2NErC21CjC2sjEMMBF6Qh9SdY9nSKWos8,1506
|
|
175
178
|
jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
|
|
@@ -182,15 +185,15 @@ jaclang/plugin/tests/test_features.py,sha256=sK9d2UazofGl9qYZO_ODKmOHZY8E4fnXNoy
|
|
|
182
185
|
jaclang/plugin/tests/test_jaseci.py,sha256=g2HQWPaG4E2FQOWcKmZ2SM2MDDOEy2s1u14Idb7GTbw,27398
|
|
183
186
|
jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
187
|
jaclang/runtimelib/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
|
|
185
|
-
jaclang/runtimelib/architype.py,sha256=
|
|
188
|
+
jaclang/runtimelib/architype.py,sha256=oKwDKH-uy3l1z7Z89jF0l2rZHmtZ0eu-OBC6kcvE8qA,8695
|
|
186
189
|
jaclang/runtimelib/constructs.py,sha256=1ARnsPrDi1UvyaFRhGRhO0kj0fnIZ2HbHF7O3itB-ZQ,796
|
|
187
190
|
jaclang/runtimelib/context.py,sha256=DjCkj1S6WLBWbNMkhUjqPYIhxqXV0XjJ1Mpjy7WR4g0,5538
|
|
188
191
|
jaclang/runtimelib/importer.py,sha256=a6ORKrDfK-jKXopgyZHz188O-VI2NflFQo7VTUVvqOw,14592
|
|
189
192
|
jaclang/runtimelib/machine.py,sha256=8gyGLxURqfy0bLXMWyOwjIX-rH8Mz11b-jV6Ta5liTk,11566
|
|
190
193
|
jaclang/runtimelib/memory.py,sha256=LrVTo6Cac0q-YG1wug-Fgc8O2Tue9zRHnxSulDw3ZQ4,5656
|
|
191
|
-
jaclang/runtimelib/test.py,sha256=
|
|
192
|
-
jaclang/runtimelib/utils.py,sha256=
|
|
193
|
-
jaclang/settings.py,sha256=
|
|
194
|
+
jaclang/runtimelib/test.py,sha256=4HW7MjHmxjwWjwtIqLtFpcq9B9rI4NmyA92qFy9yhz8,4709
|
|
195
|
+
jaclang/runtimelib/utils.py,sha256=6_fLmG3zfcX7cVKCq_NvkGjsDsx1nxvV_1GLpyIp8IY,9150
|
|
196
|
+
jaclang/settings.py,sha256=1oxaHpRfrjuwtwgoRJl-abxb8qlvIXUf0JqE-apLLqo,3793
|
|
194
197
|
jaclang/tests/fixtures/abc.jac,sha256=HZvLz6IEt3Snlgg8Czs-N4emLjg4fT3IbTo95d3Gdww,1747
|
|
195
198
|
jaclang/tests/fixtures/access_checker.jac,sha256=UVoY7sYW-R0ms2HDA4HXQ5xJNiW0vEbY2T5CCY1avus,281
|
|
196
199
|
jaclang/tests/fixtures/access_modifier.jac,sha256=NJHXbu_N_cWpTkjJnwcHzWkEk2kroaQ8aaalVxPXAW8,2587
|
|
@@ -203,6 +206,8 @@ jaclang/tests/fixtures/assign_compr_dup.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-g
|
|
|
203
206
|
jaclang/tests/fixtures/baddy.jac,sha256=waLlwMyW_JCE1x_SuVzRER1RBe1j3XiLTw-0NjznWpI,30
|
|
204
207
|
jaclang/tests/fixtures/baddy.test.jac,sha256=Uq-Nlf44QUAtbOfDCbc9_ceLxmo31PILDTSzAv8nJq4,33
|
|
205
208
|
jaclang/tests/fixtures/bar.jac,sha256=XZWOrzgMQed2R611DLfzCvWUT4a4gTYZXWRYvizMb18,782
|
|
209
|
+
jaclang/tests/fixtures/base_class1.jac,sha256=OlQSzWdas7AKrvZb-gfq8DdwwearzOke3stE6TFXVQA,124
|
|
210
|
+
jaclang/tests/fixtures/base_class2.jac,sha256=B-MD5LYDVJMTxEC9-B7tJyW900ymYU7p_hcmZm5eNRg,118
|
|
206
211
|
jaclang/tests/fixtures/blankwithentry.jac,sha256=lnMDDKyKnldsUIx1AVCIHt47KY3gR2CZYhox8663sLM,53
|
|
207
212
|
jaclang/tests/fixtures/builtin_dotgen.jac,sha256=U2r_bmSsMDuJWuo9vYoRCgRIo9NA9-VkaaiacvAMeS8,1814
|
|
208
213
|
jaclang/tests/fixtures/builtins_test.jac,sha256=1eJXipIFpa8IDjKv20TjAW_k4hTtJzNT1cKnQOAVt28,244
|
|
@@ -257,9 +262,13 @@ jaclang/tests/fixtures/impl_grab.jac,sha256=1akdPM5RLmT4VD8sqomlVYc6nPr3ftrZf5ye
|
|
|
257
262
|
jaclang/tests/fixtures/impl_match_confused.impl.jac,sha256=kGLTk4t5ABnlMZe5WRGg8bJjpHRqBwa5W_0d1yRHfO8,42
|
|
258
263
|
jaclang/tests/fixtures/impl_match_confused.jac,sha256=m8HxEQrI8IM82AZXaK5_rfhrHf2dvrPafjDMYyQI9EU,106
|
|
259
264
|
jaclang/tests/fixtures/import.jac,sha256=yUvfsrZx80HH_Fdbotn6RT63i7ZFoi_18bvOe9Km3ak,220
|
|
265
|
+
jaclang/tests/fixtures/import_all.jac,sha256=y4qs_t19dMeMguRYdKjHIygtvqeqAPus3ZeckJvtepI,149
|
|
266
|
+
jaclang/tests/fixtures/import_all_py.py,sha256=glXDPNxw7AJw4On_ltKoYLSnNz6xXHa1MvuAnP2DHos,196
|
|
260
267
|
jaclang/tests/fixtures/index_slice.jac,sha256=kvdwwAV-BdO5t3A8CM179qY5u9UMbWfp_3ZuAvUSBvc,628
|
|
261
268
|
jaclang/tests/fixtures/inherit_check.jac,sha256=FQlbCavN4ryt3mmD6ei1MIt1jMgZ8_NcVkT62233C0s,423
|
|
262
269
|
jaclang/tests/fixtures/jacsamp.jac,sha256=VUHUn-RvHzTA4v0KNIFuciocqAHsgQp9tfsEvh5WHlE,96
|
|
270
|
+
jaclang/tests/fixtures/jactest_imported.jac,sha256=7mAJufFCrjY0UCz0KEwPEbOK-dHpWuvV3dT8lS3_Zi0,102
|
|
271
|
+
jaclang/tests/fixtures/jactest_main.jac,sha256=0zFv8KQlug6MihPvL5_iFVssp-zfH_FZD1WNZXnTKKg,408
|
|
263
272
|
jaclang/tests/fixtures/jp_importer.jac,sha256=Mfn62rwYk8CANIkCoMf5UFt4SKl042jaU0CHnj-Soiw,414
|
|
264
273
|
jaclang/tests/fixtures/jp_importer_auto.jac,sha256=-Pvv4wgWe--BKAwMnWtC630ry4c923pzyIY41j1mw-s,372
|
|
265
274
|
jaclang/tests/fixtures/lambda.jac,sha256=nU4HbPrBdYe6NegJq4LueequaiLCe3KWyTAbL__ibG0,113
|
|
@@ -267,7 +276,7 @@ jaclang/tests/fixtures/match_multi_ex.jac,sha256=05XB0B0yMWpA84pCvAnKnpXObpE5fcU
|
|
|
267
276
|
jaclang/tests/fixtures/maxfail_run_test.jac,sha256=UMoJSwrmNL7mCI65P8XTKrsYgi7mFvwLS3Dd24BmR6k,160
|
|
268
277
|
jaclang/tests/fixtures/mtest.impl.jac,sha256=wYsT4feH2JgxxgN217dgbDWooSmD8HBSlzUwJ4jAa8g,76
|
|
269
278
|
jaclang/tests/fixtures/mtest.jac,sha256=i7aQpJuUw4YMXgJOvGn_lRx-TruJdqBClioPKGUd4mw,67
|
|
270
|
-
jaclang/tests/fixtures/multi_dim_array_split.jac,sha256=
|
|
279
|
+
jaclang/tests/fixtures/multi_dim_array_split.jac,sha256=xM34uJwKBbI1-Q8Z-dK2lNB7PWvQZUmdsNxMuDwUHKs,290
|
|
271
280
|
jaclang/tests/fixtures/needs_import.jac,sha256=5zuIVuhgFbVAd7Hx2CDoTkjw39fp1UWC4Hitb_n-JKU,319
|
|
272
281
|
jaclang/tests/fixtures/needs_import_1.jac,sha256=m8marIqHPo-waC5PIYeLq38N2QzRUJBJe1oUQADeiNY,104
|
|
273
282
|
jaclang/tests/fixtures/needs_import_2.jac,sha256=RC4aok5TCbxInmTp8OmArCt4afawPP9ZdhAzkW5WJCc,104
|
|
@@ -294,31 +303,33 @@ jaclang/tests/fixtures/simple_archs.jac,sha256=zHv-fnPoCtOwlk80d3AORjOwawapAdGXW
|
|
|
294
303
|
jaclang/tests/fixtures/slice_vals.jac,sha256=BN8QxpLa8z834VMjLr1Nfv3rAWmqmk3r7FN7gedydAc,232
|
|
295
304
|
jaclang/tests/fixtures/sub_abil_sep.jac,sha256=mXqMAx0VzDj_4iYO6714Gc_t7LemqRJraKtS_W2jxDY,198
|
|
296
305
|
jaclang/tests/fixtures/sub_abil_sep_multilev.jac,sha256=wm7-RGdwfUGHjQo20jj2fTp0y5t2F0SId468h02rhBE,189
|
|
306
|
+
jaclang/tests/fixtures/test_py.py,sha256=rh4p3QZNCIuDHYDsrnPCNwxm6voVjISUt2UkzJU5yx8,182
|
|
297
307
|
jaclang/tests/fixtures/trailing_comma.jac,sha256=XOpD-Czd-mPS7Xrtq9AibyGsalEHzexKj_BZZ6TTxIg,2362
|
|
298
308
|
jaclang/tests/fixtures/try_finally.jac,sha256=I4bjOZz0vZbY1rQZlPy-RCMYP2-LQwtsShlmKR1_UFE,574
|
|
299
309
|
jaclang/tests/fixtures/tupleunpack.jac,sha256=AP6rbofc0VmsTNxInY6WLGRKWVY6u8ut0uzQX_52QyI,64
|
|
300
310
|
jaclang/tests/fixtures/tuplytuples.jac,sha256=6qiXn5OV_qn4cqKwROjJ1VuBAh0nbUGpp-5vtH9n_Dg,344
|
|
301
311
|
jaclang/tests/fixtures/type_info.jac,sha256=4Cw31ef5gny6IS0kLzgeSO-7ArEH1HgFFFip1BGQhZM,316
|
|
302
312
|
jaclang/tests/fixtures/visit_order.jac,sha256=5_U-sJX_TkY9A1ho4ibCr-53pFYRtkl97FfMlhoke3w,260
|
|
313
|
+
jaclang/tests/fixtures/visit_sequence.jac,sha256=My5EdoMMc-6kSKtIuVQLTQ9bmiyfZb1xAyLvd5KH1CQ,830
|
|
303
314
|
jaclang/tests/fixtures/walker_override.jac,sha256=Ok58ZAgxuV6aECNxYrjbbyAWSiqIbnly3N3O6cD563o,271
|
|
304
315
|
jaclang/tests/fixtures/walker_update.jac,sha256=_bN3ASAN6LpfIQFfDMRnrx2oteM-ef7OrbE91f2qvrs,463
|
|
305
316
|
jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2Otf_rFnPy8,466
|
|
306
317
|
jaclang/tests/foo/__init__.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
318
|
jaclang/tests/main.jac,sha256=UJ4dASLCMA3wW78Rq3AHcq5GfXVY5QBm2S16OCrR1hQ,13
|
|
308
319
|
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
309
|
-
jaclang/tests/test_cli.py,sha256=
|
|
310
|
-
jaclang/tests/test_language.py,sha256=
|
|
320
|
+
jaclang/tests/test_cli.py,sha256=jADI7iZN7PguCzmtAt0oK1RZkboRFKjHfz-fN5rC78w,19332
|
|
321
|
+
jaclang/tests/test_language.py,sha256=s4phFcN1lK_OdpjhWq2bpzHC4s58Djjsn6REeHV4sRU,50988
|
|
311
322
|
jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
|
|
312
323
|
jaclang/tests/test_reference.py,sha256=FISQpZbB8cmRoAeJOFfXUy13WVxykZjpkPSb1OTotfI,3340
|
|
313
324
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
314
325
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
315
|
-
jaclang/utils/helpers.py,sha256=
|
|
326
|
+
jaclang/utils/helpers.py,sha256=0n3J50D5XvLI6nEalDewDWRkjO2EO71OkKS_6lGYuyY,10340
|
|
316
327
|
jaclang/utils/lang_tools.py,sha256=HECF9zXH8si6Q_oBhSSoOMmv-k8ppKPb6RAlX_wZPWE,10177
|
|
317
328
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
318
329
|
jaclang/utils/test.py,sha256=27TS33HkjKMy-hb-E4J1qQ3aBVqBPJaI_222ZT7P5TQ,6053
|
|
319
330
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
320
331
|
jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
|
|
321
|
-
jaclang/utils/treeprinter.py,sha256=
|
|
332
|
+
jaclang/utils/treeprinter.py,sha256=ElR4IuXewv2D7MykE9bNji1KxgCNCOTCp2j4ZECeiEk,13512
|
|
322
333
|
jaclang/vendor/__init__.py,sha256=tEcp2kl3hMvF2d6X6WlJSAGuAMYOVCKCstXuPMQSR4Q,265
|
|
323
334
|
jaclang/vendor/attr/__init__.py,sha256=WlXJN6ICB0Y_HZ0lmuTUgia0kuSdn2p67d4N6cYxNZM,3307
|
|
324
335
|
jaclang/vendor/attr/__init__.pyi,sha256=u08EujYHy_rSyebNn-I9Xv2S_cXmtA9xWGc0cBsyl18,16976
|
|
@@ -1541,7 +1552,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1541
1552
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1542
1553
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1543
1554
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1544
|
-
jaclang-0.7.
|
|
1545
|
-
jaclang-0.7.
|
|
1546
|
-
jaclang-0.7.
|
|
1547
|
-
jaclang-0.7.
|
|
1555
|
+
jaclang-0.7.29.dist-info/METADATA,sha256=qzaiCwzH5P2Ahvt6GUeAYJQjmB4TWY7a1hVlL9YHVkc,4965
|
|
1556
|
+
jaclang-0.7.29.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
1557
|
+
jaclang-0.7.29.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1558
|
+
jaclang-0.7.29.dist-info/RECORD,,
|
|
File without changes
|