jaclang 0.7.9__py3-none-any.whl → 0.7.13__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 +13 -3
- jaclang/compiler/absyntree.py +10 -2
- jaclang/compiler/parser.py +2 -1
- jaclang/compiler/passes/ir_pass.py +9 -0
- jaclang/compiler/passes/main/import_pass.py +15 -2
- jaclang/compiler/passes/main/pyast_gen_pass.py +238 -32
- jaclang/compiler/passes/main/pyast_load_pass.py +3 -1
- jaclang/compiler/passes/main/tests/test_import_pass.py +13 -0
- jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py +2 -2
- jaclang/compiler/passes/main/tests/test_sub_node_pass.py +1 -3
- jaclang/compiler/passes/main/type_check_pass.py +0 -17
- jaclang/compiler/passes/tool/tests/test_unparse_validate.py +1 -2
- jaclang/compiler/tests/test_importer.py +1 -1
- jaclang/core/importer.py +233 -62
- jaclang/langserve/engine.py +182 -136
- jaclang/langserve/server.py +29 -7
- jaclang/langserve/tests/fixtures/base_module_structure.jac +28 -2
- jaclang/langserve/tests/fixtures/import_include_statements.jac +1 -1
- jaclang/langserve/tests/test_server.py +73 -66
- jaclang/langserve/utils.py +266 -0
- jaclang/plugin/default.py +7 -4
- jaclang/plugin/feature.py +3 -3
- jaclang/plugin/spec.py +3 -3
- jaclang/settings.py +1 -0
- jaclang/tests/fixtures/deep/one_lev.jac +6 -4
- jaclang/tests/fixtures/needs_import.jac +1 -1
- jaclang/tests/test_cli.py +7 -9
- jaclang/tests/test_language.py +9 -13
- jaclang/tests/test_man_code.py +8 -10
- jaclang/utils/helpers.py +3 -3
- jaclang/utils/test.py +8 -0
- {jaclang-0.7.9.dist-info → jaclang-0.7.13.dist-info}/METADATA +2 -2
- {jaclang-0.7.9.dist-info → jaclang-0.7.13.dist-info}/RECORD +35 -35
- {jaclang-0.7.9.dist-info → jaclang-0.7.13.dist-info}/WHEEL +0 -0
- {jaclang-0.7.9.dist-info → jaclang-0.7.13.dist-info}/entry_points.txt +0 -0
jaclang/tests/test_cli.py
CHANGED
|
@@ -37,17 +37,16 @@ class JacCliTests(TestCase):
|
|
|
37
37
|
sys.stdout = captured_output
|
|
38
38
|
sys.stderr = captured_output
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# print(f"Error: {e}")
|
|
40
|
+
try:
|
|
41
|
+
cli.enter(self.fixture_abs_path("err2.jac"), entrypoint="speak", args=[]) # type: ignore
|
|
42
|
+
except Exception as e:
|
|
43
|
+
print(f"Error: {e}")
|
|
45
44
|
|
|
46
45
|
sys.stdout = sys.__stdout__
|
|
47
46
|
sys.stderr = sys.__stderr__
|
|
48
47
|
stdout_value = captured_output.getvalue()
|
|
49
48
|
# print(stdout_value)
|
|
50
|
-
self.assertIn("
|
|
49
|
+
self.assertIn("Syntax Error", stdout_value)
|
|
51
50
|
|
|
52
51
|
def test_jac_ast_tool_pass_template(self) -> None:
|
|
53
52
|
"""Basic test for pass."""
|
|
@@ -126,6 +125,7 @@ class JacCliTests(TestCase):
|
|
|
126
125
|
cli.run(f"{self.fixture_abs_path('needs_import.jir')}")
|
|
127
126
|
sys.stdout = sys.__stdout__
|
|
128
127
|
stdout_value = captured_output.getvalue()
|
|
128
|
+
print(stdout_value)
|
|
129
129
|
self.assertIn("Errors: 0, Warnings: 0", stdout_value)
|
|
130
130
|
self.assertIn("<module 'pyfunc' from", stdout_value)
|
|
131
131
|
|
|
@@ -219,9 +219,7 @@ class JacCliTests(TestCase):
|
|
|
219
219
|
"""Test for graph CLI cmd."""
|
|
220
220
|
captured_output = io.StringIO()
|
|
221
221
|
sys.stdout = captured_output
|
|
222
|
-
cli.dot(
|
|
223
|
-
f"{self.fixture_abs_path('../../../examples/reference/connect_expressions.jac')}"
|
|
224
|
-
)
|
|
222
|
+
cli.dot(f"{self.examples_abs_path('reference/connect_expressions.jac')}")
|
|
225
223
|
sys.stdout = sys.__stdout__
|
|
226
224
|
stdout_value = captured_output.getvalue()
|
|
227
225
|
if os.path.exists("connect_expressions.dot"):
|
jaclang/tests/test_language.py
CHANGED
|
@@ -62,9 +62,7 @@ class JacLanguageTests(TestCase):
|
|
|
62
62
|
"""Parse micro jac file."""
|
|
63
63
|
captured_output = io.StringIO()
|
|
64
64
|
sys.stdout = captured_output
|
|
65
|
-
jac_import(
|
|
66
|
-
"micro.simple_walk", base_path=self.fixture_abs_path("../../../examples/")
|
|
67
|
-
)
|
|
65
|
+
jac_import("micro.simple_walk", base_path=self.examples_abs_path(""))
|
|
68
66
|
sys.stdout = sys.__stdout__
|
|
69
67
|
stdout_value = captured_output.getvalue()
|
|
70
68
|
self.assertEqual(
|
|
@@ -157,7 +155,7 @@ class JacLanguageTests(TestCase):
|
|
|
157
155
|
sys.stdout = captured_output
|
|
158
156
|
jac_import(
|
|
159
157
|
"reference.special_comprehensions",
|
|
160
|
-
base_path=self.
|
|
158
|
+
base_path=self.examples_abs_path(""),
|
|
161
159
|
)
|
|
162
160
|
sys.stdout = sys.__stdout__
|
|
163
161
|
stdout_value = captured_output.getvalue()
|
|
@@ -389,7 +387,7 @@ class JacLanguageTests(TestCase):
|
|
|
389
387
|
sys.stdout = captured_output
|
|
390
388
|
jac_import(
|
|
391
389
|
"micro.typed_filter_compr",
|
|
392
|
-
base_path=self.
|
|
390
|
+
base_path=self.examples_abs_path(""),
|
|
393
391
|
)
|
|
394
392
|
sys.stdout = sys.__stdout__
|
|
395
393
|
stdout_value = captured_output.getvalue()
|
|
@@ -602,9 +600,7 @@ class JacLanguageTests(TestCase):
|
|
|
602
600
|
"ir",
|
|
603
601
|
[
|
|
604
602
|
"ast",
|
|
605
|
-
self.
|
|
606
|
-
"../../../examples/reference/collection_values.jac"
|
|
607
|
-
),
|
|
603
|
+
self.examples_abs_path("reference/collection_values.jac"),
|
|
608
604
|
],
|
|
609
605
|
)
|
|
610
606
|
|
|
@@ -760,7 +756,7 @@ class JacLanguageTests(TestCase):
|
|
|
760
756
|
"""Test conn assign on edges."""
|
|
761
757
|
Jac.get_root()._jac_.edges.clear()
|
|
762
758
|
mypass = jac_file_to_pass(
|
|
763
|
-
self.
|
|
759
|
+
self.examples_abs_path("micro/simple_walk.jac"),
|
|
764
760
|
schedule=py_code_gen_typed,
|
|
765
761
|
)
|
|
766
762
|
self.assertEqual(len(mypass.errors_had), 0)
|
|
@@ -770,7 +766,7 @@ class JacLanguageTests(TestCase):
|
|
|
770
766
|
"""Test conn assign on edges."""
|
|
771
767
|
Jac.get_root()._jac_.edges.clear()
|
|
772
768
|
mypass = jac_file_to_pass(
|
|
773
|
-
self.
|
|
769
|
+
self.examples_abs_path("guess_game/guess_game5.jac"),
|
|
774
770
|
schedule=py_code_gen_typed,
|
|
775
771
|
)
|
|
776
772
|
self.assertEqual(len(mypass.errors_had), 0)
|
|
@@ -803,14 +799,14 @@ class JacLanguageTests(TestCase):
|
|
|
803
799
|
def test_single_impl_annex(self) -> None:
|
|
804
800
|
"""Basic test for pass."""
|
|
805
801
|
mypass = jac_file_to_pass(
|
|
806
|
-
self.
|
|
802
|
+
self.examples_abs_path("manual_code/circle_pure.jac"),
|
|
807
803
|
target=passes.JacImportPass,
|
|
808
804
|
)
|
|
809
805
|
|
|
810
806
|
self.assertEqual(mypass.ir.pp().count("AbilityDef - (o)Circle.(c)area"), 1)
|
|
811
807
|
self.assertIsNone(mypass.ir._sym_tab)
|
|
812
808
|
mypass = jac_file_to_pass(
|
|
813
|
-
self.
|
|
809
|
+
self.examples_abs_path("manual_code/circle_pure.jac"),
|
|
814
810
|
target=passes.SymTabBuildPass,
|
|
815
811
|
)
|
|
816
812
|
self.assertEqual(
|
|
@@ -821,7 +817,7 @@ class JacLanguageTests(TestCase):
|
|
|
821
817
|
def test_inherit_baseclass_sym(self) -> None:
|
|
822
818
|
"""Basic test for symtable support for inheritance."""
|
|
823
819
|
mypass = jac_file_to_pass(
|
|
824
|
-
self.
|
|
820
|
+
self.examples_abs_path("guess_game/guess_game4.jac"),
|
|
825
821
|
target=passes.DefUsePass,
|
|
826
822
|
)
|
|
827
823
|
table = None
|
jaclang/tests/test_man_code.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import io
|
|
4
4
|
import sys
|
|
5
|
+
from contextlib import suppress
|
|
5
6
|
|
|
6
7
|
from jaclang.cli import cli
|
|
7
8
|
from jaclang.utils.test import TestCase
|
|
@@ -20,7 +21,7 @@ class JacCliTests(TestCase):
|
|
|
20
21
|
sys.stdout = captured_output
|
|
21
22
|
|
|
22
23
|
# Execute the function
|
|
23
|
-
cli.run(self.
|
|
24
|
+
cli.run(self.examples_abs_path("manual_code/circle.jac"))
|
|
24
25
|
|
|
25
26
|
sys.stdout = sys.__stdout__
|
|
26
27
|
stdout_value = captured_output.getvalue()
|
|
@@ -43,7 +44,7 @@ class JacCliTests(TestCase):
|
|
|
43
44
|
sys.stdout = stdout_block
|
|
44
45
|
|
|
45
46
|
# Execute the function
|
|
46
|
-
cli.test(self.
|
|
47
|
+
cli.test(self.examples_abs_path("manual_code/circle.jac"))
|
|
47
48
|
|
|
48
49
|
sys.stderr = sys.__stderr__
|
|
49
50
|
sys.stdout = sys.__stdout__
|
|
@@ -57,7 +58,7 @@ class JacCliTests(TestCase):
|
|
|
57
58
|
sys.stdout = captured_output
|
|
58
59
|
|
|
59
60
|
# Execute the function
|
|
60
|
-
cli.run(self.
|
|
61
|
+
cli.run(self.examples_abs_path("manual_code/circle_clean.jac"))
|
|
61
62
|
|
|
62
63
|
sys.stdout = sys.__stdout__
|
|
63
64
|
stdout_value = captured_output.getvalue()
|
|
@@ -75,7 +76,7 @@ class JacCliTests(TestCase):
|
|
|
75
76
|
sys.stdout = captured_output
|
|
76
77
|
|
|
77
78
|
# Execute the function
|
|
78
|
-
cli.run(self.
|
|
79
|
+
cli.run(self.examples_abs_path("manual_code/circle_pure.jac"))
|
|
79
80
|
|
|
80
81
|
sys.stdout = sys.__stdout__
|
|
81
82
|
stdout_value = captured_output.getvalue()
|
|
@@ -96,7 +97,7 @@ class JacCliTests(TestCase):
|
|
|
96
97
|
"ir",
|
|
97
98
|
[
|
|
98
99
|
"py",
|
|
99
|
-
f"{self.
|
|
100
|
+
f"{self.examples_abs_path('manual_code/circle_pure.jac')}",
|
|
100
101
|
],
|
|
101
102
|
)
|
|
102
103
|
|
|
@@ -114,11 +115,8 @@ class JacCliTests(TestCase):
|
|
|
114
115
|
sys.stdout = stdio_block
|
|
115
116
|
|
|
116
117
|
# Execute the function
|
|
117
|
-
|
|
118
|
-
self.
|
|
119
|
-
"../../../examples/manual_code/circle_clean_tests.jac"
|
|
120
|
-
)
|
|
121
|
-
)
|
|
118
|
+
with suppress(SystemExit):
|
|
119
|
+
cli.test(self.examples_abs_path("manual_code/circle_clean_tests.jac"))
|
|
122
120
|
|
|
123
121
|
sys.stderr = sys.__stderr__
|
|
124
122
|
sys.stdout = sys.__stdout__
|
jaclang/utils/helpers.py
CHANGED
|
@@ -108,12 +108,12 @@ def auto_generate_refs() -> None:
|
|
|
108
108
|
heading = heading.strip()
|
|
109
109
|
heading_snakecase = heading_to_snake(heading)
|
|
110
110
|
content = (
|
|
111
|
-
f'## {heading}\n**
|
|
112
|
-
f'"jaclang/compiler/jac.lark:{lines[0]}:{lines[1]}"\n```\n'
|
|
113
|
-
f'**Code Example**\n=== "Jac"\n ```jac linenums="1"\n --8<-- "examples/reference/'
|
|
111
|
+
f'## {heading}\n**Code Example**\n=== "Jac"\n ```jac linenums="1"\n --8<-- "examples/reference/'
|
|
114
112
|
f'{heading_snakecase}.jac"\n'
|
|
115
113
|
f' ```\n=== "Python"\n ```python linenums="1"\n --8<-- "examples/reference/'
|
|
116
114
|
f'{heading_snakecase}.py"\n ```\n'
|
|
115
|
+
f'??? example "Jac Grammar Snippet"\n ```yaml linenums="{lines[0]}"\n --8<-- '
|
|
116
|
+
f'"jaclang/compiler/jac.lark:{lines[0]}:{lines[1]}"\n ```\n'
|
|
117
117
|
"**Description**\n\n--8<-- "
|
|
118
118
|
f'"examples/reference/'
|
|
119
119
|
f'{heading_snakecase}.md"\n'
|
jaclang/utils/test.py
CHANGED
|
@@ -52,6 +52,14 @@ class TestCase(_TestCase):
|
|
|
52
52
|
file_path = os.path.join(os.path.dirname(fixture_src), "fixtures", fixture)
|
|
53
53
|
return os.path.abspath(file_path)
|
|
54
54
|
|
|
55
|
+
def examples_abs_path(self, example: str) -> str:
|
|
56
|
+
"""Get absolute path of a example from examples directory."""
|
|
57
|
+
fixture_src = jaclang.__file__
|
|
58
|
+
file_path = os.path.join(
|
|
59
|
+
os.path.dirname(os.path.dirname(fixture_src)), "examples", example
|
|
60
|
+
)
|
|
61
|
+
return os.path.abspath(file_path)
|
|
62
|
+
|
|
55
63
|
|
|
56
64
|
class TestCaseMicroSuite(TestCase):
|
|
57
65
|
"""Base test case for Jaseci."""
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.13
|
|
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
|
-
Keywords: jac,jaclang,programming-language,machine-learning,artificial-intelligence
|
|
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
10
|
Requires-Python: >=3.11.0,<4.0.0
|
|
@@ -2,26 +2,26 @@ 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=
|
|
5
|
+
jaclang/cli/cli.py,sha256=tBAUZkY5x8rPCWGbTHDlu4mnAXEThrjCk_K7pFYfWzg,13911
|
|
6
6
|
jaclang/cli/cmdreg.py,sha256=u0jAd6A8czt7tBgPBBKBhYAG4By1FrjEGaTU2XFKeYs,8372
|
|
7
7
|
jaclang/compiler/.gitignore,sha256=n1k2_xXTorp9PY8hhYM4psHircn-NMaFx95bSgDKopo,10
|
|
8
8
|
jaclang/compiler/__init__.py,sha256=P8h-q53h-MTK8Wmvpb7sP5R6Ojz94Y2F9nqMwIUt0d4,3064
|
|
9
|
-
jaclang/compiler/absyntree.py,sha256=
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=M725Yu7bpuaJUUC45lm1Z43hOCCL1iaROwNLAfUMIZk,134871
|
|
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=n4KaEkvnb9-KVJJVvxiWimhjbrOiknBvLHAVDBFbF7Y,8991
|
|
13
13
|
jaclang/compiler/jac.lark,sha256=Vu14pEa9HObGQCHCGFhIdq__yA3W0-cKAX53NZc--xM,17204
|
|
14
|
-
jaclang/compiler/parser.py,sha256=
|
|
14
|
+
jaclang/compiler/parser.py,sha256=oGNhrPq0Xr0Uq6gXdBVVl7rdSSlwQGmiPicmD-n62xQ,140292
|
|
15
15
|
jaclang/compiler/passes/__init__.py,sha256=0Tw0d130ZjzA05jVcny9cf5NfLjlaM70PKqFnY4zqn4,69
|
|
16
|
-
jaclang/compiler/passes/ir_pass.py,sha256=
|
|
16
|
+
jaclang/compiler/passes/ir_pass.py,sha256=rNB3aHffPkX6HOeVAZgXwabNY1t9dWFr1xp6XgfNSok,5823
|
|
17
17
|
jaclang/compiler/passes/main/__init__.py,sha256=YSWVNkgnJKF32LpJwX__FwvYrpTSoxFqvnw410WrhkA,947
|
|
18
18
|
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=fvmvU_V72Zby8fiBnVESinAYFII5qJWKYXtmn4JAChA,5140
|
|
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
21
|
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=-Ubaxk_5Tm4e09pDiTk0U-vZqUIZRzffLBw4yT2pOVo,18187
|
|
22
|
-
jaclang/compiler/passes/main/import_pass.py,sha256=
|
|
23
|
-
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=
|
|
24
|
-
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=
|
|
22
|
+
jaclang/compiler/passes/main/import_pass.py,sha256=r7y-G3hyf1Cu8nuV5tkre6_kZfSNTzs3VZ84wlokjMs,10944
|
|
23
|
+
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=BvoqmodIszOmZ75pdhR32g_Y8IYcJHqOT3K4TkJRX0c,151993
|
|
24
|
+
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=Zc8om2xfn5tLUcVFcFLjJsd3XhhCuBFY0eksZlghpxQ,93240
|
|
25
25
|
jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
|
|
26
26
|
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=dnx_MvrVIks9hpUbiF2m3ao_xrfCwPajPJec7Bis_bA,8338
|
|
27
27
|
jaclang/compiler/passes/main/pyout_pass.py,sha256=QWVB-AyVBha3OespP89LMuslRsdG2niZErwtnRPiURM,3191
|
|
@@ -53,16 +53,16 @@ jaclang/compiler/passes/main/tests/fixtures/registry.jac,sha256=1G6amtU1zIFCgq09
|
|
|
53
53
|
jaclang/compiler/passes/main/tests/fixtures/type_info.jac,sha256=64Im2L-R3YF8DEuTt29QE6mJI5PnFe3PiwcDLKa8gOE,661
|
|
54
54
|
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=zWF2l93RjyG0AWyDXdXsMlPWYOhX46d699YqvIETRGY,1836
|
|
55
55
|
jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=0ieyoeiDSK2m3dmVN00oJK2TdJhxWwxA1lnxT95wz0A,843
|
|
56
|
-
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=
|
|
56
|
+
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=I7Y1p6PPqnXjpd9UpSILxAiWRdURis3qR-Y5LFzzG9o,2717
|
|
57
57
|
jaclang/compiler/passes/main/tests/test_pyast_build_pass.py,sha256=LIT4TP-nhtftRtY5rNySRQlim-dWMSlkfUvkhZTk4pc,1383
|
|
58
|
-
jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=
|
|
58
|
+
jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=6ZpLNYxblzBg6bmWSA0fikNM7nEAR9b9F18LJaO5buM,4679
|
|
59
59
|
jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py,sha256=If8PE4exN5g9o1NRElNC0XdfIwJAp7M7f69rzmYRYUQ,655
|
|
60
60
|
jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=Eed94qPmO38GFVV4DARx6G0xaawAoncWfgSHja1wPeQ,1162
|
|
61
|
-
jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=
|
|
61
|
+
jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI9FNHTewI2r5HO19-JxNGK_NZ01E,821
|
|
62
62
|
jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
|
|
63
63
|
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=v2_KmcyX1_fOpReRKM0mUnlFXKVPRvFCMR3Mw9ftytI,2265
|
|
64
64
|
jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=ehC0_giLg7NwB7fR10nW5Te8mZ76qmUFxkK1bEjtmrw,129
|
|
65
|
-
jaclang/compiler/passes/main/type_check_pass.py,sha256=
|
|
65
|
+
jaclang/compiler/passes/main/type_check_pass.py,sha256=oPXSlTkxPge8H5fvKpFt80V_5ft5It56wLftG7HjS2Y,3458
|
|
66
66
|
jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
|
|
67
67
|
jaclang/compiler/passes/tool/fuse_comments_pass.py,sha256=N9a84qArNuTXX1iaXsBzqcufx6A3zYq2p-1ieH6FmHc,3133
|
|
68
68
|
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=yqq2OOSs2tlDKUnPe0GS3NAZh8F5fquA5ZTYw44QX08,87356
|
|
@@ -100,7 +100,7 @@ jaclang/compiler/passes/tool/tests/fixtures/simple_walk.jac,sha256=6jwYKXxJ1B4Vf
|
|
|
100
100
|
jaclang/compiler/passes/tool/tests/fixtures/simple_walk_fmt.jac,sha256=6jwYKXxJ1B4VfYDFlQhStN3_QX7dDXzC2gI6U9-KhZM,806
|
|
101
101
|
jaclang/compiler/passes/tool/tests/test_fuse_comments_pass.py,sha256=ZeWHsm7VIyyS8KKpoB2SdlHM4jF22fMfSrfTfxt2MQw,398
|
|
102
102
|
jaclang/compiler/passes/tool/tests/test_jac_format_pass.py,sha256=AKGBEz02bS9REJuryZlPvY2avE_XWqKV8sRrnh5hu2g,6101
|
|
103
|
-
jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=
|
|
103
|
+
jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=rySW9ppDvnOqgF_B6kC4qRvXwfGErs6rOGXl4iULw-U,2674
|
|
104
104
|
jaclang/compiler/passes/transform.py,sha256=GEHK3zFWrEjbAQ3mIl3D59jBuIrA8DRbw9t_IlUqg3M,2297
|
|
105
105
|
jaclang/compiler/passes/utils/__init__.py,sha256=UsI5rUopTUiStAzup4kbPwIwrnC5ofCrqWBCBbM2-k4,35
|
|
106
106
|
jaclang/compiler/passes/utils/mypy_ast_build.py,sha256=aPvvdGSwbOGHYiK5kY665bqtfjj7s2YfTONV4EuLai8,26162
|
|
@@ -115,22 +115,22 @@ jaclang/compiler/tests/fixtures/kwesc.jac,sha256=OXxVL_fwiFuvYO1YX1RHa2hpETSpb0Q
|
|
|
115
115
|
jaclang/compiler/tests/fixtures/mod_doc_test.jac,sha256=aFZpjn7V5lvCHp0lPoGXtdkcY3CK8_-SKeZGruutv4Y,35
|
|
116
116
|
jaclang/compiler/tests/fixtures/staticcheck.jac,sha256=t849--dTkSSjCJX1OiMV-lgao_hIDSKwKVs-aS6IwK8,342
|
|
117
117
|
jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uhulQSDGQ3o6sY,82
|
|
118
|
-
jaclang/compiler/tests/test_importer.py,sha256=
|
|
118
|
+
jaclang/compiler/tests/test_importer.py,sha256=U8rji5DQc-AKLH8JJGW4UZcb7AzC0qdfIGDtjNXbl2I,1742
|
|
119
119
|
jaclang/compiler/tests/test_parser.py,sha256=Sj9Kz1FghESaPpyx_kEvScs4xvz-vgEdH8yyQJ0iB7M,4820
|
|
120
120
|
jaclang/core/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
|
|
121
121
|
jaclang/core/architype.py,sha256=qBH0W-ALxmK6DALc4_S7gx-3R7C_6o-PGKb3f4RbWbE,16781
|
|
122
122
|
jaclang/core/constructs.py,sha256=ogWc95DEZxQWoxqsfbRrcmt9ldGDqW7zQVu3DWuIAKs,848
|
|
123
123
|
jaclang/core/context.py,sha256=AxGsra9EqokVdOhwIxR9RuAcnm0HmobUnMBezUBY1_s,4774
|
|
124
|
-
jaclang/core/importer.py,sha256=
|
|
124
|
+
jaclang/core/importer.py,sha256=Rj7OzuwSAn-ig5pdFhqgjb5H5KyC8YFcur4VAyk1qLI,12712
|
|
125
125
|
jaclang/core/memory.py,sha256=7QukfL6wDBXrdpRn01yu4RMNkmIMNqFiKrI0zfpGSy4,2947
|
|
126
126
|
jaclang/core/test.py,sha256=HRCl3cf0uPTe58Kcx_sBUb6ow8J53rnmpFOhA7g9oAA,2851
|
|
127
127
|
jaclang/core/utils.py,sha256=uzEsRSuNSMMo7dlvCozGv0TnpUmHEjGNzUTZt1Df2gQ,7741
|
|
128
128
|
jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
|
|
129
|
-
jaclang/langserve/engine.py,sha256=
|
|
130
|
-
jaclang/langserve/server.py,sha256=
|
|
129
|
+
jaclang/langserve/engine.py,sha256=w0rvDBj3QAdheygVksyu9piGLZwLpPChR2q6T0vbuMk,18978
|
|
130
|
+
jaclang/langserve/server.py,sha256=CyvVmj4G0Y6mJZNxpUDd7dKUm6pvBXZ2mh_DfQ0kI_Y,4968
|
|
131
131
|
jaclang/langserve/tests/__init__.py,sha256=iDM47k6c3vahaWhwxpbkdEOshbmX-Zl5x669VONjS2I,23
|
|
132
132
|
jaclang/langserve/tests/defaults.py,sha256=8UWHuCHY-WatPcWFhyX9-4KLuJgODTlLNj0wNnKomIM,7608
|
|
133
|
-
jaclang/langserve/tests/fixtures/base_module_structure.jac,sha256=
|
|
133
|
+
jaclang/langserve/tests/fixtures/base_module_structure.jac,sha256=87xx2Gmp0VtJmBFXY8xU50CVwWdSMVNM8uuRRv-n6A0,1009
|
|
134
134
|
jaclang/langserve/tests/fixtures/circle.jac,sha256=AWzRxTBjvQwoLSOakjn0kKXWqKvDaUYGc1zmBk1Nd5c,1770
|
|
135
135
|
jaclang/langserve/tests/fixtures/circle_err.jac,sha256=T22UiWpKJy6IhS-y0DrrZJMz95-8SAZnRAQUmT_kxO4,1732
|
|
136
136
|
jaclang/langserve/tests/fixtures/circle_pure.impl.jac,sha256=rsXatY9a-wZONRPJ6VOuw7Bj9R_CrJO_TEwAVXj1PjU,702
|
|
@@ -139,7 +139,7 @@ jaclang/langserve/tests/fixtures/circle_pure.test.jac,sha256=QiOAUZ5xXPKDx_QQRCZ
|
|
|
139
139
|
jaclang/langserve/tests/fixtures/circle_pure_err.impl.jac,sha256=rsXatY9a-wZONRPJ6VOuw7Bj9R_CrJO_TEwAVXj1PjU,702
|
|
140
140
|
jaclang/langserve/tests/fixtures/circle_pure_err.jac,sha256=jQ5QX0G5khGACoY82CM-6LcOX57w4e29tHVicE2eMgw,608
|
|
141
141
|
jaclang/langserve/tests/fixtures/hello.jac,sha256=iRMKtYVCw1zLvjOQbj3q__3Manj1Di1YeDTNMEvYtBc,36
|
|
142
|
-
jaclang/langserve/tests/fixtures/import_include_statements.jac,sha256=
|
|
142
|
+
jaclang/langserve/tests/fixtures/import_include_statements.jac,sha256=LRbhmpNQagZCcF3aGaAhlaDYplnXbSRbtTlBVmoXxtA,300
|
|
143
143
|
jaclang/langserve/tests/fixtures/py_import.py,sha256=BvNimsRmsbJWd-JNM31oJpl52bYvSdfQ6Np3DJNt7d0,320
|
|
144
144
|
jaclang/langserve/tests/pylsp_jsonrpc/__init__.py,sha256=bDWxRjmELPCVGy243_0kNrG7PttyZsv_eZ9JTKQrU1E,105
|
|
145
145
|
jaclang/langserve/tests/pylsp_jsonrpc/dispatchers.py,sha256=zEZWu6C2_n4lPoA8H8OO67746P93VhbYaXZMdtrD8Z0,1038
|
|
@@ -147,13 +147,13 @@ jaclang/langserve/tests/pylsp_jsonrpc/endpoint.py,sha256=TxDpWUd-8AGJwdRQN_iiCXY
|
|
|
147
147
|
jaclang/langserve/tests/pylsp_jsonrpc/exceptions.py,sha256=NGHeFQawZcjoLUcgDmY3bF7BqZR83g7TmdKyzCmRaKM,2836
|
|
148
148
|
jaclang/langserve/tests/pylsp_jsonrpc/streams.py,sha256=R80_FvICIkrbdGmNtlemWYaxrr7-XldPgLaASnyv0W8,3332
|
|
149
149
|
jaclang/langserve/tests/session.py,sha256=3pIRoQjZnsnUWIYnO2SpK7c1PAiHMCFrrStNK2tawRM,9572
|
|
150
|
-
jaclang/langserve/tests/test_server.py,sha256=
|
|
151
|
-
jaclang/langserve/utils.py,sha256=
|
|
150
|
+
jaclang/langserve/tests/test_server.py,sha256=dgmyGLv7eF23SWKHhyTXI9szJpZqaOeWKUD-ulbyh60,11211
|
|
151
|
+
jaclang/langserve/utils.py,sha256=gmN_2tdtavccNxNMjbCLdbde0pF_GDMB1aGUK27JqfE,19133
|
|
152
152
|
jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
|
|
153
153
|
jaclang/plugin/builtin.py,sha256=MEMPUnj_rlwcCNmUkfH5S8iazMnQ6fpp6tls4fh5z7k,1188
|
|
154
|
-
jaclang/plugin/default.py,sha256=
|
|
155
|
-
jaclang/plugin/feature.py,sha256=
|
|
156
|
-
jaclang/plugin/spec.py,sha256=
|
|
154
|
+
jaclang/plugin/default.py,sha256=z4eEU0wb_o312wJo1bfeCuz26lIQegrqvGgHIGGrJOI,23669
|
|
155
|
+
jaclang/plugin/feature.py,sha256=HJQjdUKPy0v1ypga4dj3KfIQDoc_TWo9qCwqHykgxbU,9802
|
|
156
|
+
jaclang/plugin/spec.py,sha256=ov7iTMHL93VqM_m_n1LLwrQQFCmTbqDbocE_emk8-fI,8903
|
|
157
157
|
jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
|
|
158
158
|
jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
|
|
159
159
|
jaclang/plugin/tests/fixtures/impl_match_impl.jac,sha256=k1385r7Hdlq6mUKxEHa3VOKJUIWH08hYg2kErhbYwFM,31
|
|
@@ -162,7 +162,7 @@ jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8IC
|
|
|
162
162
|
jaclang/plugin/tests/test_features.py,sha256=p0N5inZn92Cj0eqslmDR0-q6pVG8hkcQfA6CuQcfP3Y,2352
|
|
163
163
|
jaclang/plugin/tests/test_jaseci.py,sha256=XcVL-FOZMTsjJEZqCa-rcYyEPl1dxdFFu9vhvm8kUaI,7956
|
|
164
164
|
jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
|
-
jaclang/settings.py,sha256=
|
|
165
|
+
jaclang/settings.py,sha256=woT2v-xh3Mh_haOoefQlRddOYDkalwGGlQJVSvBkmAc,3404
|
|
166
166
|
jaclang/tests/fixtures/abc.jac,sha256=AWzRxTBjvQwoLSOakjn0kKXWqKvDaUYGc1zmBk1Nd5c,1770
|
|
167
167
|
jaclang/tests/fixtures/access_checker.jac,sha256=6Inm14cZsyMfezFRs2zfnQEZSE_JRxVvytcZbox7BNw,375
|
|
168
168
|
jaclang/tests/fixtures/access_modifier.jac,sha256=bxiPlbqm4zPXdMIeTR0-LhjO6c-LS7fW_fGuIA7oKWI,945
|
|
@@ -179,7 +179,7 @@ jaclang/tests/fixtures/deep/deeper/deep_outer_import.jac,sha256=omdlOBM0cuUAHhmx
|
|
|
179
179
|
jaclang/tests/fixtures/deep/deeper/deep_outer_import2.jac,sha256=YlAclVAukzVeCNbXZU6iTl8Rj1uXpUJ1WR7Ei2vhbqc,252
|
|
180
180
|
jaclang/tests/fixtures/deep/deeper/snd_lev.jac,sha256=SRp6Ic-MAgjcbYc090TwiFYsoVoJB4sLTA-Y5JPMpp8,82
|
|
181
181
|
jaclang/tests/fixtures/deep/mycode.jac,sha256=XP6RdZP90ftdhe5vidttgZhjDcsO4S8rbaVC0cG-e0U,47
|
|
182
|
-
jaclang/tests/fixtures/deep/one_lev.jac,sha256=
|
|
182
|
+
jaclang/tests/fixtures/deep/one_lev.jac,sha256=HNDYbJQoC6v2on82doqg4L40umfhqlwRCpSAbVL5xOw,229
|
|
183
183
|
jaclang/tests/fixtures/deep/one_lev_dup.jac,sha256=ViaR09OgKCfL-ANjELnfg7yhcXW16Oq1qqdpC62qO4E,113
|
|
184
184
|
jaclang/tests/fixtures/deep/one_lev_dup_py.py,sha256=G2k46o37mPhPSskYw7bYdbdq8r0xXVpNbGPWu2_os14,117
|
|
185
185
|
jaclang/tests/fixtures/deep_convert.jac,sha256=AWmLuqhM8GlOZ5rP2THREzpIpL9v3L9sZWyx07nkeDE,71
|
|
@@ -216,7 +216,7 @@ jaclang/tests/fixtures/lambda.jac,sha256=nU4HbPrBdYe6NegJq4LueequaiLCe3KWyTAbL__
|
|
|
216
216
|
jaclang/tests/fixtures/maxfail_run_test.jac,sha256=JSGAM4wXnu5kP5aczcHNDlnn017yZpinRApetQSPhtE,196
|
|
217
217
|
jaclang/tests/fixtures/mtest.impl.jac,sha256=wYsT4feH2JgxxgN217dgbDWooSmD8HBSlzUwJ4jAa8g,76
|
|
218
218
|
jaclang/tests/fixtures/mtest.jac,sha256=i7aQpJuUw4YMXgJOvGn_lRx-TruJdqBClioPKGUd4mw,67
|
|
219
|
-
jaclang/tests/fixtures/needs_import.jac,sha256=
|
|
219
|
+
jaclang/tests/fixtures/needs_import.jac,sha256=XqQ1zl5w0lTXTWLVoYv8OjAkuIuV8OpHIEGsOPMUPzQ,315
|
|
220
220
|
jaclang/tests/fixtures/needs_import_1.jac,sha256=m8marIqHPo-waC5PIYeLq38N2QzRUJBJe1oUQADeiNY,104
|
|
221
221
|
jaclang/tests/fixtures/needs_import_2.jac,sha256=RC4aok5TCbxInmTp8OmArCt4afawPP9ZdhAzkW5WJCc,104
|
|
222
222
|
jaclang/tests/fixtures/needs_import_3.jac,sha256=9ASkW82KUKDgydt8dR48XucG66n6xeLEGLwAgRgfOR8,104
|
|
@@ -243,16 +243,16 @@ jaclang/tests/fixtures/type_info.jac,sha256=4Cw31ef5gny6IS0kLzgeSO-7ArEH1HgFFFip
|
|
|
243
243
|
jaclang/tests/fixtures/walker_override.jac,sha256=Ok58ZAgxuV6aECNxYrjbbyAWSiqIbnly3N3O6cD563o,271
|
|
244
244
|
jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2Otf_rFnPy8,466
|
|
245
245
|
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
246
|
-
jaclang/tests/test_cli.py,sha256=
|
|
247
|
-
jaclang/tests/test_language.py,sha256=
|
|
248
|
-
jaclang/tests/test_man_code.py,sha256=
|
|
246
|
+
jaclang/tests/test_cli.py,sha256=ytSFNsKu_9FillP7AUMLBT5A6Ms9TGcPWrGrQFq7IV0,8656
|
|
247
|
+
jaclang/tests/test_language.py,sha256=T2NawObRbnOMUHp-JofNB-QSp1O5hpVOlNlMdE0qfdM,34458
|
|
248
|
+
jaclang/tests/test_man_code.py,sha256=cKSgTTDl1_Ojhz71X9n2gh0hP4jIa0uQeQeG29LuX9I,4436
|
|
249
249
|
jaclang/tests/test_reference.py,sha256=FoZQS-U9teiag8mAmX5X6ak4fuCOv00mvOyqJ44Zkc8,3379
|
|
250
250
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
251
251
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
252
|
-
jaclang/utils/helpers.py,sha256=
|
|
252
|
+
jaclang/utils/helpers.py,sha256=aPAIj7j_Gqg0DToFj-DEbfea6gIbiBhAEFDtxw-Av4c,6168
|
|
253
253
|
jaclang/utils/lang_tools.py,sha256=5R-Pe_ylXqWEPXrUGsQ3Vy7rrItf_mbyK19ptFSKiJI,10020
|
|
254
254
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
255
|
-
jaclang/utils/test.py,sha256=
|
|
255
|
+
jaclang/utils/test.py,sha256=l2CrsC0umDn0YKukuAO4oWxjOeeP5QK0LgHxjxCjxkY,5743
|
|
256
256
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
257
257
|
jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
|
|
258
258
|
jaclang/utils/treeprinter.py,sha256=7YPWmtU-gHPN37m9eXqVSqjTy7X_xmUVmBaGcn3p5SM,12663
|
|
@@ -1478,7 +1478,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1478
1478
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1479
1479
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1480
1480
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1481
|
-
jaclang-0.7.
|
|
1482
|
-
jaclang-0.7.
|
|
1483
|
-
jaclang-0.7.
|
|
1484
|
-
jaclang-0.7.
|
|
1481
|
+
jaclang-0.7.13.dist-info/METADATA,sha256=fsJM45XYGUB8knIcVYLytSIQyPdv9gYhcDKCdZT0wNQ,4822
|
|
1482
|
+
jaclang-0.7.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1483
|
+
jaclang-0.7.13.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1484
|
+
jaclang-0.7.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|