jaclang 0.7.27__py3-none-any.whl → 0.7.28__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 +11 -3
- jaclang/plugin/feature.py +2 -0
- jaclang/plugin/spec.py +1 -0
- jaclang/runtimelib/test.py +59 -4
- 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/test_cli.py +82 -0
- jaclang/tests/test_language.py +7 -7
- jaclang/utils/helpers.py +9 -1
- jaclang/utils/treeprinter.py +6 -3
- {jaclang-0.7.27.dist-info → jaclang-0.7.28.dist-info}/METADATA +2 -2
- {jaclang-0.7.27.dist-info → jaclang-0.7.28.dist-info}/RECORD +41 -31
- {jaclang-0.7.27.dist-info → jaclang-0.7.28.dist-info}/WHEEL +1 -1
- {jaclang-0.7.27.dist-info → jaclang-0.7.28.dist-info}/entry_points.txt +0 -0
jaclang/runtimelib/test.py
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import unittest
|
|
6
|
+
from dataclasses import dataclass
|
|
6
7
|
from typing import Callable, Optional
|
|
7
8
|
|
|
8
9
|
|
|
@@ -56,6 +57,16 @@ class JacTestCheck:
|
|
|
56
57
|
|
|
57
58
|
test_case = unittest.TestCase()
|
|
58
59
|
test_suite = unittest.TestSuite()
|
|
60
|
+
|
|
61
|
+
@dataclass
|
|
62
|
+
class TestSuite:
|
|
63
|
+
"""Test Suite."""
|
|
64
|
+
|
|
65
|
+
test_case: unittest.FunctionTestCase
|
|
66
|
+
func_name: str
|
|
67
|
+
|
|
68
|
+
test_suite_path: dict[str, list[TestSuite]] = {}
|
|
69
|
+
|
|
59
70
|
breaker = False
|
|
60
71
|
failcount = 0
|
|
61
72
|
|
|
@@ -64,13 +75,45 @@ class JacTestCheck:
|
|
|
64
75
|
"""Clear the test suite."""
|
|
65
76
|
JacTestCheck.test_case = unittest.TestCase()
|
|
66
77
|
JacTestCheck.test_suite = unittest.TestSuite()
|
|
78
|
+
JacTestCheck.test_suite_path = {}
|
|
67
79
|
|
|
68
80
|
@staticmethod
|
|
69
|
-
def run_test(
|
|
81
|
+
def run_test(
|
|
82
|
+
xit: bool,
|
|
83
|
+
maxfail: int | None,
|
|
84
|
+
verbose: bool,
|
|
85
|
+
filepath: str | None,
|
|
86
|
+
func_name: str | None,
|
|
87
|
+
) -> None:
|
|
70
88
|
"""Run the test suite."""
|
|
71
89
|
verb = 2 if verbose else 1
|
|
90
|
+
test_suite = JacTestCheck.test_suite
|
|
91
|
+
|
|
92
|
+
if filepath and filepath.endswith(".test.jac"):
|
|
93
|
+
filepath = filepath[:-9]
|
|
94
|
+
elif filepath and filepath.endswith(".jac"):
|
|
95
|
+
filepath = filepath[:-4]
|
|
96
|
+
|
|
97
|
+
if filepath:
|
|
98
|
+
test_cases = JacTestCheck.test_suite_path.get(filepath)
|
|
99
|
+
if test_cases is not None:
|
|
100
|
+
test_suite = unittest.TestSuite()
|
|
101
|
+
for test_case in test_cases:
|
|
102
|
+
if func_name:
|
|
103
|
+
if test_case.func_name == func_name:
|
|
104
|
+
test_suite.addTest(test_case.test_case)
|
|
105
|
+
else:
|
|
106
|
+
test_suite.addTest(test_case.test_case)
|
|
107
|
+
|
|
108
|
+
elif func_name:
|
|
109
|
+
test_suite = unittest.TestSuite()
|
|
110
|
+
for test_cases in JacTestCheck.test_suite_path.values():
|
|
111
|
+
for test_case in test_cases:
|
|
112
|
+
if test_case.func_name == func_name:
|
|
113
|
+
test_suite.addTest(test_case.test_case)
|
|
114
|
+
|
|
72
115
|
runner = JacTextTestRunner(max_failures=maxfail, failfast=xit, verbosity=verb)
|
|
73
|
-
result = runner.run(
|
|
116
|
+
result = runner.run(test_suite)
|
|
74
117
|
if result.wasSuccessful():
|
|
75
118
|
print("Passed successfully.")
|
|
76
119
|
else:
|
|
@@ -81,9 +124,21 @@ class JacTestCheck:
|
|
|
81
124
|
)
|
|
82
125
|
|
|
83
126
|
@staticmethod
|
|
84
|
-
def add_test(
|
|
127
|
+
def add_test(filepath: str, func_name: str, test_func: Callable) -> None:
|
|
85
128
|
"""Create a new test."""
|
|
86
|
-
|
|
129
|
+
if filepath and filepath.endswith(".test.jac"):
|
|
130
|
+
filepath = filepath[:-9]
|
|
131
|
+
elif filepath and filepath.endswith(".jac"):
|
|
132
|
+
filepath = filepath[:-4]
|
|
133
|
+
|
|
134
|
+
if filepath not in JacTestCheck.test_suite_path:
|
|
135
|
+
JacTestCheck.test_suite_path[filepath] = []
|
|
136
|
+
|
|
137
|
+
test_case = unittest.FunctionTestCase(test_func)
|
|
138
|
+
JacTestCheck.test_suite_path[filepath].append(
|
|
139
|
+
JacTestCheck.TestSuite(test_case=test_case, func_name=func_name)
|
|
140
|
+
)
|
|
141
|
+
JacTestCheck.test_suite.addTest(test_case)
|
|
87
142
|
|
|
88
143
|
def __getattr__(self, name: str) -> object:
|
|
89
144
|
"""Make convenient check.Equal(...) etc."""
|
jaclang/settings.py
CHANGED
|
@@ -16,10 +16,13 @@ class Settings:
|
|
|
16
16
|
pass_timer: bool = False
|
|
17
17
|
collect_py_dep_debug: bool = False
|
|
18
18
|
print_py_raised_ast: bool = False
|
|
19
|
+
py_import_pass_debug: bool = False
|
|
20
|
+
inherit_pass_debug: bool = False
|
|
19
21
|
|
|
20
22
|
# Compiler configuration
|
|
21
23
|
disable_mtllm: bool = False
|
|
22
24
|
ignore_test_annex: bool = False
|
|
25
|
+
allow_import_from: bool = False
|
|
23
26
|
|
|
24
27
|
# Formatter configuration
|
|
25
28
|
max_line_length: int = 88
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import jactest_imported;
|
|
2
|
+
|
|
3
|
+
can fib(n: int) -> int {
|
|
4
|
+
if n <= 1 {
|
|
5
|
+
return n;
|
|
6
|
+
}
|
|
7
|
+
return fib(n - 1) + fib(n - 2);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
test first_two {
|
|
12
|
+
print("Testing first 2 fibonacci numbers.");
|
|
13
|
+
assert fib(0) == 0;
|
|
14
|
+
assert fib(1) == 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
test from_2_to_10 {
|
|
18
|
+
print("Testing fibonacci numbers from 2 to 10.");
|
|
19
|
+
for i in range(2, 10) {
|
|
20
|
+
assert fib(i) == fib(i - 1) + fib(i - 2);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
import:py numpy as np;
|
|
2
|
-
|
|
3
1
|
with entry {
|
|
4
|
-
arr =
|
|
5
|
-
[[1, 2, 3, 4, 5],
|
|
2
|
+
arr = [[1, 2, 3, 4, 5],
|
|
6
3
|
[6, 7, 8, 9, 10],
|
|
7
4
|
[11, 12, 13, 14, 15],
|
|
8
5
|
[16, 17, 18, 19, 20],
|
|
9
|
-
[21, 22, 23, 24, 25]]
|
|
10
|
-
);
|
|
6
|
+
[21, 22, 23, 24, 25]];
|
|
11
7
|
|
|
12
8
|
print('Original Array:');
|
|
13
9
|
print(arr);
|
jaclang/tests/test_cli.py
CHANGED
|
@@ -233,6 +233,67 @@ class JacCliTests(TestCase):
|
|
|
233
233
|
r"13\:12 \- 13\:18.*Name - append - .*SymbolPath: builtins_test.builtins.list.append",
|
|
234
234
|
)
|
|
235
235
|
|
|
236
|
+
def test_import_all(self) -> None:
|
|
237
|
+
"""Testing for print AstTool."""
|
|
238
|
+
from jaclang.settings import settings
|
|
239
|
+
|
|
240
|
+
settings.ast_symbol_info_detailed = True
|
|
241
|
+
captured_output = io.StringIO()
|
|
242
|
+
sys.stdout = captured_output
|
|
243
|
+
|
|
244
|
+
cli.tool("ir", ["ast", f"{self.fixture_abs_path('import_all.jac')}"])
|
|
245
|
+
|
|
246
|
+
sys.stdout = sys.__stdout__
|
|
247
|
+
stdout_value = captured_output.getvalue()
|
|
248
|
+
settings.ast_symbol_info_detailed = False
|
|
249
|
+
|
|
250
|
+
self.assertRegex(
|
|
251
|
+
stdout_value,
|
|
252
|
+
r"6\:25 - 6\:30.*Name - floor -.*SymbolPath: import_all.import_all_py.floor",
|
|
253
|
+
)
|
|
254
|
+
self.assertRegex(
|
|
255
|
+
stdout_value,
|
|
256
|
+
r"5\:25 - 5\:27.*Name - pi -.*SymbolPath: import_all.import_all_py.pi",
|
|
257
|
+
)
|
|
258
|
+
|
|
259
|
+
def test_sub_class_symbol_table_fix_1(self) -> None:
|
|
260
|
+
"""Testing for print AstTool."""
|
|
261
|
+
from jaclang.settings import settings
|
|
262
|
+
|
|
263
|
+
settings.ast_symbol_info_detailed = True
|
|
264
|
+
captured_output = io.StringIO()
|
|
265
|
+
sys.stdout = captured_output
|
|
266
|
+
|
|
267
|
+
cli.tool("ir", ["ast", f"{self.fixture_abs_path('base_class1.jac')}"])
|
|
268
|
+
|
|
269
|
+
sys.stdout = sys.__stdout__
|
|
270
|
+
stdout_value = captured_output.getvalue()
|
|
271
|
+
settings.ast_symbol_info_detailed = False
|
|
272
|
+
|
|
273
|
+
self.assertRegex(
|
|
274
|
+
stdout_value,
|
|
275
|
+
r"10:7 - 10:12.*Name - start - Type.*SymbolPath: base_class1.B.start",
|
|
276
|
+
)
|
|
277
|
+
|
|
278
|
+
def test_sub_class_symbol_table_fix_2(self) -> None:
|
|
279
|
+
"""Testing for print AstTool."""
|
|
280
|
+
from jaclang.settings import settings
|
|
281
|
+
|
|
282
|
+
settings.ast_symbol_info_detailed = True
|
|
283
|
+
captured_output = io.StringIO()
|
|
284
|
+
sys.stdout = captured_output
|
|
285
|
+
|
|
286
|
+
cli.tool("ir", ["ast", f"{self.fixture_abs_path('base_class2.jac')}"])
|
|
287
|
+
|
|
288
|
+
sys.stdout = sys.__stdout__
|
|
289
|
+
stdout_value = captured_output.getvalue()
|
|
290
|
+
settings.ast_symbol_info_detailed = False
|
|
291
|
+
|
|
292
|
+
self.assertRegex(
|
|
293
|
+
stdout_value,
|
|
294
|
+
r"10:7 - 10:12.*Name - start - Type.*SymbolPath: base_class2.B.start",
|
|
295
|
+
)
|
|
296
|
+
|
|
236
297
|
def test_expr_types(self) -> None:
|
|
237
298
|
"""Testing for print AstTool."""
|
|
238
299
|
captured_output = io.StringIO()
|
|
@@ -393,6 +454,27 @@ class JacCliTests(TestCase):
|
|
|
393
454
|
self.assertIn("...F", stderr)
|
|
394
455
|
self.assertIn("F.F", stderr)
|
|
395
456
|
|
|
457
|
+
def test_run_specific_test_only(self) -> None:
|
|
458
|
+
"""Test a specific test case."""
|
|
459
|
+
process = subprocess.Popen(
|
|
460
|
+
[
|
|
461
|
+
"jac",
|
|
462
|
+
"test",
|
|
463
|
+
"-t",
|
|
464
|
+
"from_2_to_10",
|
|
465
|
+
self.fixture_abs_path("jactest_main.jac"),
|
|
466
|
+
],
|
|
467
|
+
stdin=subprocess.PIPE,
|
|
468
|
+
stdout=subprocess.PIPE,
|
|
469
|
+
stderr=subprocess.PIPE,
|
|
470
|
+
text=True,
|
|
471
|
+
)
|
|
472
|
+
stdout, stderr = process.communicate()
|
|
473
|
+
self.assertIn("Ran 1 test", stderr)
|
|
474
|
+
self.assertIn("Testing fibonacci numbers from 2 to 10.", stdout)
|
|
475
|
+
self.assertNotIn("Testing first 2 fibonacci numbers.", stdout)
|
|
476
|
+
self.assertNotIn("This test should not run after import.", stdout)
|
|
477
|
+
|
|
396
478
|
def test_graph_coverage(self) -> None:
|
|
397
479
|
"""Test for coverage of graph cmd."""
|
|
398
480
|
graph_params = set(inspect.signature(cli.dot).parameters.keys())
|
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("./"))
|
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.28
|
|
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=ufEhllQ19UIDnPFsbZRgL_f_uMjc_0tL4yltO9y01ok,47303
|
|
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
|
|
@@ -188,9 +191,9 @@ jaclang/runtimelib/context.py,sha256=DjCkj1S6WLBWbNMkhUjqPYIhxqXV0XjJ1Mpjy7WR4g0
|
|
|
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=
|
|
194
|
+
jaclang/runtimelib/test.py,sha256=4HW7MjHmxjwWjwtIqLtFpcq9B9rI4NmyA92qFy9yhz8,4709
|
|
192
195
|
jaclang/runtimelib/utils.py,sha256=xcxO45lEwEBRrWeeAaRjqGZ4Ua-XMCeNv0lS6dHwGIk,8652
|
|
193
|
-
jaclang/settings.py,sha256=
|
|
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,6 +303,7 @@ 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
|
|
@@ -306,19 +316,19 @@ jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2
|
|
|
306
316
|
jaclang/tests/foo/__init__.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
317
|
jaclang/tests/main.jac,sha256=UJ4dASLCMA3wW78Rq3AHcq5GfXVY5QBm2S16OCrR1hQ,13
|
|
308
318
|
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
309
|
-
jaclang/tests/test_cli.py,sha256=
|
|
310
|
-
jaclang/tests/test_language.py,sha256=
|
|
319
|
+
jaclang/tests/test_cli.py,sha256=jADI7iZN7PguCzmtAt0oK1RZkboRFKjHfz-fN5rC78w,19332
|
|
320
|
+
jaclang/tests/test_language.py,sha256=e92KDCXtP9myt4nvA7iCzBUq6V4zjbkro39vW1Lrh6U,50423
|
|
311
321
|
jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
|
|
312
322
|
jaclang/tests/test_reference.py,sha256=FISQpZbB8cmRoAeJOFfXUy13WVxykZjpkPSb1OTotfI,3340
|
|
313
323
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
314
324
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
315
|
-
jaclang/utils/helpers.py,sha256=
|
|
325
|
+
jaclang/utils/helpers.py,sha256=0n3J50D5XvLI6nEalDewDWRkjO2EO71OkKS_6lGYuyY,10340
|
|
316
326
|
jaclang/utils/lang_tools.py,sha256=HECF9zXH8si6Q_oBhSSoOMmv-k8ppKPb6RAlX_wZPWE,10177
|
|
317
327
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
318
328
|
jaclang/utils/test.py,sha256=27TS33HkjKMy-hb-E4J1qQ3aBVqBPJaI_222ZT7P5TQ,6053
|
|
319
329
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
320
330
|
jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
|
|
321
|
-
jaclang/utils/treeprinter.py,sha256=
|
|
331
|
+
jaclang/utils/treeprinter.py,sha256=ElR4IuXewv2D7MykE9bNji1KxgCNCOTCp2j4ZECeiEk,13512
|
|
322
332
|
jaclang/vendor/__init__.py,sha256=tEcp2kl3hMvF2d6X6WlJSAGuAMYOVCKCstXuPMQSR4Q,265
|
|
323
333
|
jaclang/vendor/attr/__init__.py,sha256=WlXJN6ICB0Y_HZ0lmuTUgia0kuSdn2p67d4N6cYxNZM,3307
|
|
324
334
|
jaclang/vendor/attr/__init__.pyi,sha256=u08EujYHy_rSyebNn-I9Xv2S_cXmtA9xWGc0cBsyl18,16976
|
|
@@ -1541,7 +1551,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1541
1551
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1542
1552
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1543
1553
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1544
|
-
jaclang-0.7.
|
|
1545
|
-
jaclang-0.7.
|
|
1546
|
-
jaclang-0.7.
|
|
1547
|
-
jaclang-0.7.
|
|
1554
|
+
jaclang-0.7.28.dist-info/METADATA,sha256=dHW7qbjtqZqrcvGQYgK25k01-zfa7pnliEAzqyBB1BA,4965
|
|
1555
|
+
jaclang-0.7.28.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
1556
|
+
jaclang-0.7.28.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1557
|
+
jaclang-0.7.28.dist-info/RECORD,,
|
|
File without changes
|