jaclang 0.7.27__py3-none-any.whl → 0.7.30__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/__init__.py +1 -1
- jaclang/compiler/absyntree.py +30 -5
- jaclang/compiler/compile.py +1 -1
- jaclang/compiler/constant.py +0 -1
- jaclang/compiler/jac.lark +1 -5
- jaclang/compiler/parser.py +2 -10
- 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 +285 -64
- 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_gen_pass.py +0 -19
- 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 +16 -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/passes/tool/jac_formatter_pass.py +0 -1
- jaclang/compiler/py_info.py +22 -0
- jaclang/compiler/symtable.py +9 -2
- jaclang/compiler/tests/test_importer.py +45 -1
- jaclang/langserve/tests/test_server.py +2 -2
- jaclang/plugin/default.py +86 -62
- jaclang/plugin/feature.py +2 -5
- jaclang/plugin/spec.py +1 -6
- jaclang/runtimelib/architype.py +20 -16
- jaclang/runtimelib/importer.py +26 -3
- jaclang/runtimelib/machine.py +2 -2
- 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 +83 -1
- jaclang/tests/test_language.py +24 -9
- jaclang/utils/helpers.py +9 -1
- jaclang/utils/test.py +2 -2
- jaclang/utils/tests/test_lang_tools.py +4 -2
- jaclang/utils/treeprinter.py +6 -3
- {jaclang-0.7.27.dist-info → jaclang-0.7.30.dist-info}/METADATA +3 -3
- {jaclang-0.7.27.dist-info → jaclang-0.7.30.dist-info}/RECORD +56 -45
- {jaclang-0.7.27.dist-info → jaclang-0.7.30.dist-info}/WHEEL +1 -1
- {jaclang-0.7.27.dist-info → jaclang-0.7.30.dist-info}/entry_points.txt +0 -0
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,8 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.30
|
|
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
|
-
Home-page: https://jaseci.org
|
|
6
5
|
License: MIT
|
|
7
6
|
Keywords: jac,jaclang,jaseci,python,programming-language,machine-learning,artificial-intelligence
|
|
8
7
|
Author: Jason Mars
|
|
@@ -19,6 +18,7 @@ Provides-Extra: all
|
|
|
19
18
|
Provides-Extra: llm
|
|
20
19
|
Provides-Extra: streamlit
|
|
21
20
|
Project-URL: Documentation, https://jac-lang.org
|
|
21
|
+
Project-URL: Homepage, https://jaseci.org
|
|
22
22
|
Project-URL: Repository, https://github.com/Jaseci-Labs/jaclang
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
@@ -2,34 +2,35 @@ 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
|
-
jaclang/compiler/__init__.py,sha256=
|
|
9
|
-
jaclang/compiler/absyntree.py,sha256=
|
|
8
|
+
jaclang/compiler/__init__.py,sha256=QKNNJswgDdvn7qjvggio4BicJfCus1JCqyhsTGYN5sg,2724
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=7eiK13nNSvrdRu3brEXuF3wgBAugjBltvV79t_QnIEg,141860
|
|
10
10
|
jaclang/compiler/codeloc.py,sha256=clz7ofOE0Rgf7eqco3zEO31mCbG3Skj9-rLooliBeik,2942
|
|
11
|
-
jaclang/compiler/compile.py,sha256=
|
|
12
|
-
jaclang/compiler/constant.py,sha256=
|
|
13
|
-
jaclang/compiler/jac.lark,sha256=
|
|
14
|
-
jaclang/compiler/parser.py,sha256=
|
|
11
|
+
jaclang/compiler/compile.py,sha256=FD3jxK8zoxdpQrYRJvwO3CoPWjYL3bbW2WhPRzj3hz8,3796
|
|
12
|
+
jaclang/compiler/constant.py,sha256=9EhbI1Q2Z0RL2z6tI612ifykxRicXLSJ9cby3ylIz1w,8981
|
|
13
|
+
jaclang/compiler/jac.lark,sha256=xLs771uRhbiU10uQLwle80RcbbOh1GassZa0he5RIPE,17497
|
|
14
|
+
jaclang/compiler/parser.py,sha256=xaYkqpiWvwdMNf2aSh6lorUA-RBb-0R4BnGVyrfavNA,143006
|
|
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/
|
|
24
|
-
jaclang/compiler/passes/main/
|
|
25
|
-
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=DmiQPoIi1nPNudwnu2Bn_vJrbVkM1VvO9XLbQqHj26s,22985
|
|
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
|
|
25
|
+
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=OyLaqzdhagGG8JEL7b-dzGeOl_Y28UTnOzZt_I_strs,142648
|
|
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,19 +66,19 @@ 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=Z7g_kY8lkq0jrN_WugTh1tRQpYmcgHyz_TfMyKIk3HY,4893
|
|
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
|
-
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=
|
|
81
|
+
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=iKwxfOIjh5_kI6xuantMWrYt1cGALE1PBSW_Fz8X4DI,91173
|
|
80
82
|
jaclang/compiler/passes/tool/schedules.py,sha256=kmbsCazAMizGAdQuZpFky5BPlYlMXqNw7wOUzdi_wBo,432
|
|
81
83
|
jaclang/compiler/passes/tool/tests/__init__.py,sha256=AeOaZjA1rf6VAr0JqIit6jlcmOzW7pxGr4U1fOwgK_Y,24
|
|
82
84
|
jaclang/compiler/passes/tool/tests/fixtures/corelib.jac,sha256=QvGgP1v_RRqM2t8BOMbbEj3g6jCgyYKvZEdqydJqlqg,12581
|
|
@@ -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
|
|
@@ -135,7 +138,7 @@ jaclang/compiler/tests/fixtures/kwesc.jac,sha256=OXxVL_fwiFuvYO1YX1RHa2hpETSpb0Q
|
|
|
135
138
|
jaclang/compiler/tests/fixtures/mod_doc_test.jac,sha256=aFZpjn7V5lvCHp0lPoGXtdkcY3CK8_-SKeZGruutv4Y,35
|
|
136
139
|
jaclang/compiler/tests/fixtures/staticcheck.jac,sha256=t849--dTkSSjCJX1OiMV-lgao_hIDSKwKVs-aS6IwK8,342
|
|
137
140
|
jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uhulQSDGQ3o6sY,82
|
|
138
|
-
jaclang/compiler/tests/test_importer.py,sha256=
|
|
141
|
+
jaclang/compiler/tests/test_importer.py,sha256=BKRZ0-n459LaXpJOJt73NHcYkYFAFfFalYz3TF4VgD8,3764
|
|
139
142
|
jaclang/compiler/tests/test_parser.py,sha256=Ke5bF2nrLufhp4y92_dONvBZ8S5GgvfDozOJnEy4-9U,5044
|
|
140
143
|
jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
|
|
141
144
|
jaclang/langserve/engine.py,sha256=2U6sSCXLedVZhbUGFMadSecKUmW23LAk8S99vN7tsyc,20911
|
|
@@ -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=yaF0JtGrDGJqPKdXUk4v_Uxd5PXFz3Zv9UWTENT0JbI,47142
|
|
173
|
+
jaclang/plugin/feature.py,sha256=zXI0uZDioToOoC9z294Kbt3zVLkDO59RXhSEN9FYyI4,17010
|
|
171
174
|
jaclang/plugin/plugin.md,sha256=B252QTH3c8uZyvXTbGmZBafZtdXstFC5vT5jIN_gS4U,9994
|
|
172
|
-
jaclang/plugin/spec.py,sha256=
|
|
175
|
+
jaclang/plugin/spec.py,sha256=4QAluXPJ_4Hbg9rPBu97JfkRbHJv8tc-tVxfhI_LWTI,14573
|
|
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=masm9grqVRFzBFJbpbxrDQ9nWrrA4RZ9FJfK2KmfIZQ,8679
|
|
186
189
|
jaclang/runtimelib/constructs.py,sha256=1ARnsPrDi1UvyaFRhGRhO0kj0fnIZ2HbHF7O3itB-ZQ,796
|
|
187
190
|
jaclang/runtimelib/context.py,sha256=DjCkj1S6WLBWbNMkhUjqPYIhxqXV0XjJ1Mpjy7WR4g0,5538
|
|
188
|
-
jaclang/runtimelib/importer.py,sha256=
|
|
189
|
-
jaclang/runtimelib/machine.py,sha256=
|
|
191
|
+
jaclang/runtimelib/importer.py,sha256=A2YIoPTPaRYvIrj3JZL7bDOyxFpU25Ld-V_fWQMsTbE,15650
|
|
192
|
+
jaclang/runtimelib/machine.py,sha256=JvJiuh_QSFmqHIwWsOXb1pRPdAmM7sadUzWkNpb6jJc,11571
|
|
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=QT1pdVxv6Wyp7xKXJc_w4YdOiwpgQ8KYYROq1KhfzAk,19351
|
|
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
|
-
jaclang/utils/test.py,sha256=
|
|
329
|
+
jaclang/utils/test.py,sha256=c12ZyRvG2IQtuRaU9XEGBrdM26fH82tWP9u64HH2Mz4,6089
|
|
319
330
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
320
|
-
jaclang/utils/tests/test_lang_tools.py,sha256=
|
|
321
|
-
jaclang/utils/treeprinter.py,sha256=
|
|
331
|
+
jaclang/utils/tests/test_lang_tools.py,sha256=wIMWdoKF24gVTlG_dGLAxetZhGmBF8cftUY-bugNOOQ,4879
|
|
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.30.dist-info/METADATA,sha256=ACKhVDb2Ry7XFK-JK1Uf4ZtcjgmmpZmbABTfzwzl6hE,4977
|
|
1556
|
+
jaclang-0.7.30.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
1557
|
+
jaclang-0.7.30.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1558
|
+
jaclang-0.7.30.dist-info/RECORD,,
|
|
File without changes
|