jaclang 0.7.22__py3-none-any.whl → 0.7.25__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/__init__.py +5 -10
- jaclang/cli/cli.py +50 -30
- jaclang/compiler/__init__.py +2 -2
- jaclang/compiler/absyntree.py +87 -48
- jaclang/compiler/codeloc.py +7 -2
- jaclang/compiler/compile.py +10 -3
- jaclang/compiler/parser.py +26 -23
- jaclang/compiler/passes/ir_pass.py +2 -2
- jaclang/compiler/passes/main/def_impl_match_pass.py +46 -0
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py +146 -123
- jaclang/compiler/passes/main/import_pass.py +6 -2
- jaclang/compiler/passes/main/pyast_load_pass.py +36 -35
- jaclang/compiler/passes/main/pyjac_ast_link_pass.py +7 -7
- jaclang/compiler/passes/main/registry_pass.py +3 -12
- jaclang/compiler/passes/main/tests/fixtures/defn_decl_mismatch.jac +19 -0
- jaclang/compiler/passes/main/tests/fixtures/fstrings.jac +2 -0
- jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py +59 -0
- jaclang/compiler/passes/main/tests/test_registry_pass.py +2 -10
- jaclang/compiler/passes/main/tests/test_type_check_pass.py +1 -1
- jaclang/compiler/passes/main/type_check_pass.py +8 -6
- jaclang/compiler/passes/transform.py +27 -3
- jaclang/compiler/passes/utils/mypy_ast_build.py +246 -26
- jaclang/compiler/symtable.py +6 -0
- jaclang/compiler/tests/test_importer.py +2 -2
- jaclang/langserve/engine.py +14 -12
- jaclang/langserve/server.py +7 -2
- jaclang/langserve/tests/test_server.py +1 -1
- jaclang/langserve/utils.py +17 -3
- jaclang/plugin/builtin.py +3 -3
- jaclang/plugin/default.py +612 -236
- jaclang/plugin/feature.py +274 -99
- jaclang/plugin/plugin.md +471 -0
- jaclang/plugin/spec.py +231 -86
- jaclang/plugin/tests/fixtures/other_root_access.jac +9 -9
- jaclang/plugin/tests/test_features.py +2 -2
- jaclang/runtimelib/architype.py +1 -370
- jaclang/runtimelib/constructs.py +2 -0
- jaclang/runtimelib/context.py +2 -4
- jaclang/runtimelib/importer.py +7 -2
- jaclang/runtimelib/machine.py +78 -6
- jaclang/runtimelib/memory.py +2 -4
- jaclang/settings.py +3 -0
- jaclang/tests/fixtures/arch_create_util.jac +7 -0
- jaclang/tests/fixtures/arch_rel_import_creation.jac +30 -0
- jaclang/tests/fixtures/builtin_dotgen.jac +6 -6
- jaclang/tests/fixtures/create_dynamic_architype.jac +35 -0
- jaclang/tests/fixtures/edge_node_walk.jac +1 -1
- jaclang/tests/fixtures/edges_walk.jac +1 -1
- jaclang/tests/fixtures/enum_inside_archtype.jac +16 -11
- jaclang/tests/fixtures/expr_type.jac +54 -0
- jaclang/tests/fixtures/gendot_bubble_sort.jac +1 -1
- jaclang/tests/fixtures/glob_multivar_statement.jac +15 -0
- jaclang/tests/fixtures/registry.jac +20 -8
- jaclang/tests/fixtures/visit_order.jac +20 -0
- jaclang/tests/foo/__init__.jac +0 -0
- jaclang/tests/main.jac +2 -0
- jaclang/tests/test_cli.py +68 -4
- jaclang/tests/test_language.py +113 -27
- jaclang/utils/helpers.py +92 -14
- jaclang/utils/lang_tools.py +6 -2
- jaclang/utils/treeprinter.py +4 -2
- {jaclang-0.7.22.dist-info → jaclang-0.7.25.dist-info}/METADATA +2 -1
- {jaclang-0.7.22.dist-info → jaclang-0.7.25.dist-info}/RECORD +65 -55
- {jaclang-0.7.22.dist-info → jaclang-0.7.25.dist-info}/WHEEL +1 -1
- {jaclang-0.7.22.dist-info → jaclang-0.7.25.dist-info}/entry_points.txt +0 -0
jaclang/utils/helpers.py
CHANGED
|
@@ -147,7 +147,7 @@ def dump_traceback(e: Exception) -> str:
|
|
|
147
147
|
return len(string.encode("utf-8")[:offset].decode("utf-8", errors="replace"))
|
|
148
148
|
|
|
149
149
|
tb = TracebackException(type(e), e, e.__traceback__, limit=None, compact=True)
|
|
150
|
-
trace_dump += f"Error: {str(e)}"
|
|
150
|
+
trace_dump += f"Error: {str(e)}\n"
|
|
151
151
|
|
|
152
152
|
# The first frame is the call the to the above `exec` function, not usefull to the enduser,
|
|
153
153
|
# and Make the most recent call first.
|
|
@@ -155,33 +155,111 @@ def dump_traceback(e: Exception) -> str:
|
|
|
155
155
|
tb.stack.reverse()
|
|
156
156
|
|
|
157
157
|
# FIXME: should be some settings, we should replace to ensure the anchors length match.
|
|
158
|
-
dump_tab_width =
|
|
158
|
+
dump_tab_width = 2
|
|
159
159
|
|
|
160
160
|
for idx, frame in enumerate(tb.stack):
|
|
161
161
|
func_signature = frame.name + ("()" if frame.name.isidentifier() else "")
|
|
162
162
|
|
|
163
163
|
# Pretty print the most recent call's location.
|
|
164
|
-
if idx == 0 and (
|
|
164
|
+
if idx == 0 and (
|
|
165
|
+
(frame.lineno is not None) and frame.line and frame.line.strip() != ""
|
|
166
|
+
):
|
|
167
|
+
|
|
165
168
|
line_o = frame._original_line.rstrip() # type: ignore [attr-defined]
|
|
166
|
-
line_s = frame.line.rstrip() if frame.line else ""
|
|
167
|
-
stripped_chars = len(line_o) - len(line_s)
|
|
168
|
-
trace_dump += f'\n{" " * (dump_tab_width * 2)}{line_s}'
|
|
169
169
|
if frame.colno is not None and frame.end_colno is not None:
|
|
170
|
-
off_start = byte_offset_to_char_offset(line_o, frame.colno)
|
|
171
|
-
off_end = byte_offset_to_char_offset(line_o, frame.end_colno)
|
|
172
|
-
|
|
173
|
-
#
|
|
174
|
-
|
|
175
|
-
|
|
170
|
+
off_start = byte_offset_to_char_offset(line_o, frame.colno) - 1
|
|
171
|
+
off_end = byte_offset_to_char_offset(line_o, frame.end_colno) - 1
|
|
172
|
+
|
|
173
|
+
# Get the source.
|
|
174
|
+
file_source = None
|
|
175
|
+
with open(frame.filename, "r") as file:
|
|
176
|
+
file_source = file.read()
|
|
177
|
+
|
|
178
|
+
# Get the source offset.
|
|
179
|
+
lines = file_source.split("\n")
|
|
180
|
+
for i in range(frame.lineno - 1):
|
|
181
|
+
off_start += len(lines[i]) + 1
|
|
182
|
+
off_end += len(lines[i]) + 1
|
|
183
|
+
|
|
184
|
+
trace_dump += pretty_print_source_location(
|
|
185
|
+
frame.filename, file_source, frame.lineno, off_start, off_end
|
|
176
186
|
)
|
|
177
187
|
|
|
178
|
-
trace_dump += f'\n{" " * (dump_tab_width * 2)}{anchors}'
|
|
179
|
-
|
|
180
188
|
trace_dump += f'\n{" " * dump_tab_width}at {func_signature} {frame.filename}:{frame.lineno}'
|
|
181
189
|
|
|
182
190
|
return trace_dump
|
|
183
191
|
|
|
184
192
|
|
|
193
|
+
# TODO: After implementing the TextRange (or simillar named) class to mark a text range
|
|
194
|
+
# refactor the parameter to accept an instace of that text range object.
|
|
195
|
+
def pretty_print_source_location(
|
|
196
|
+
file_path: str,
|
|
197
|
+
file_source: str,
|
|
198
|
+
error_line: int,
|
|
199
|
+
pos_start: int,
|
|
200
|
+
pos_end: int,
|
|
201
|
+
) -> str:
|
|
202
|
+
"""Pretty print internal method for the pretty_print method."""
|
|
203
|
+
# NOTE: The Line numbers and the column numbers are starts with 1.
|
|
204
|
+
# We print totally 5 lines (error line and above 2 and bellow 2).
|
|
205
|
+
|
|
206
|
+
# The width of the line number we'll be printing (more of a settings).
|
|
207
|
+
line_num_width: int = 5
|
|
208
|
+
|
|
209
|
+
idx: int = pos_start # Pointer for the current character.
|
|
210
|
+
|
|
211
|
+
if file_source == "" or file_path == "":
|
|
212
|
+
return ""
|
|
213
|
+
|
|
214
|
+
start_line: int = error_line - 2
|
|
215
|
+
if start_line < 1:
|
|
216
|
+
start_line = 1
|
|
217
|
+
end_line: int = start_line + 5 # Index is exclusive.
|
|
218
|
+
|
|
219
|
+
# Get the first character of the [start_line].
|
|
220
|
+
file_source.splitlines(True)[start_line - 1]
|
|
221
|
+
curr_line: int = error_line
|
|
222
|
+
while idx >= 0 and curr_line >= start_line:
|
|
223
|
+
idx -= 1
|
|
224
|
+
if idx < 0:
|
|
225
|
+
break
|
|
226
|
+
if file_source[idx] == "\n":
|
|
227
|
+
curr_line -= 1
|
|
228
|
+
|
|
229
|
+
idx += 1 # Enter the line.
|
|
230
|
+
assert idx == 0 or file_source[idx - 1] == "\n"
|
|
231
|
+
|
|
232
|
+
pretty_dump = ""
|
|
233
|
+
|
|
234
|
+
# Print each lines.
|
|
235
|
+
curr_line = start_line
|
|
236
|
+
while curr_line < end_line:
|
|
237
|
+
pretty_dump += f"%{line_num_width}d | " % curr_line
|
|
238
|
+
|
|
239
|
+
idx_line_start = idx
|
|
240
|
+
while idx < len(file_source) and file_source[idx] != "\n":
|
|
241
|
+
idx += 1 # Run to the line end.
|
|
242
|
+
pretty_dump += file_source[idx_line_start:idx]
|
|
243
|
+
pretty_dump += "\n"
|
|
244
|
+
|
|
245
|
+
if curr_line == error_line: # Print the current line with indicator.
|
|
246
|
+
pretty_dump += f"%{line_num_width}s | " % " "
|
|
247
|
+
|
|
248
|
+
spaces = ""
|
|
249
|
+
for idx_pre in range(idx_line_start, pos_start):
|
|
250
|
+
spaces += "\t" if file_source[idx_pre] == "\t" else " "
|
|
251
|
+
|
|
252
|
+
err_token_len = pos_end - pos_start
|
|
253
|
+
pretty_dump += spaces + ("^" * err_token_len) + "\n"
|
|
254
|
+
|
|
255
|
+
if idx == len(file_source):
|
|
256
|
+
break
|
|
257
|
+
curr_line += 1
|
|
258
|
+
idx += 1
|
|
259
|
+
|
|
260
|
+
return pretty_dump[:-1] # Get rid of the last newline (of the last line).
|
|
261
|
+
|
|
262
|
+
|
|
185
263
|
class Jdb(pdb.Pdb):
|
|
186
264
|
"""Jac debugger."""
|
|
187
265
|
|
jaclang/utils/lang_tools.py
CHANGED
|
@@ -215,12 +215,16 @@ class AstTool:
|
|
|
215
215
|
|
|
216
216
|
if file_name.endswith(".py"):
|
|
217
217
|
with open(file_name, "r") as f:
|
|
218
|
-
|
|
218
|
+
file_source = f.read()
|
|
219
|
+
parsed_ast = py_ast.parse(file_source)
|
|
219
220
|
if output == "pyast":
|
|
220
221
|
return f"\n{py_ast.dump(parsed_ast, indent=2)}"
|
|
221
222
|
try:
|
|
222
223
|
rep = PyastBuildPass(
|
|
223
|
-
input_ir=ast.PythonModuleAst(
|
|
224
|
+
input_ir=ast.PythonModuleAst(
|
|
225
|
+
parsed_ast,
|
|
226
|
+
orig_src=ast.JacSource(file_source, file_name),
|
|
227
|
+
),
|
|
224
228
|
).ir
|
|
225
229
|
|
|
226
230
|
schedule = py_code_gen_typed
|
jaclang/utils/treeprinter.py
CHANGED
|
@@ -105,7 +105,7 @@ def print_ast_tree(
|
|
|
105
105
|
if isinstance(node, Token) and isinstance(node, AstSymbolNode):
|
|
106
106
|
out = (
|
|
107
107
|
f"{node.__class__.__name__} - {node.value} - "
|
|
108
|
-
f"Type: {node.
|
|
108
|
+
f"Type: {node.expr_type}, {access} {sym_table_link}"
|
|
109
109
|
)
|
|
110
110
|
if settings.ast_symbol_info_detailed:
|
|
111
111
|
symbol = (
|
|
@@ -133,7 +133,7 @@ def print_ast_tree(
|
|
|
133
133
|
elif isinstance(node, AstSymbolNode):
|
|
134
134
|
out = (
|
|
135
135
|
f"{node.__class__.__name__} - {node.sym_name} - "
|
|
136
|
-
f"Type: {node.
|
|
136
|
+
f"Type: {node.expr_type}, {access} {sym_table_link}"
|
|
137
137
|
)
|
|
138
138
|
if settings.ast_symbol_info_detailed:
|
|
139
139
|
symbol = (
|
|
@@ -143,6 +143,8 @@ def print_ast_tree(
|
|
|
143
143
|
)
|
|
144
144
|
out += f" SymbolPath: {symbol}"
|
|
145
145
|
return out
|
|
146
|
+
elif isinstance(node, ast.Expr):
|
|
147
|
+
return f"{node.__class__.__name__} - Type: {node.expr_type}"
|
|
146
148
|
else:
|
|
147
149
|
return f"{node.__class__.__name__}, {access}"
|
|
148
150
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.25
|
|
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
|
|
@@ -14,6 +14,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Provides-Extra: all
|
|
18
19
|
Provides-Extra: llm
|
|
19
20
|
Provides-Extra: streamlit
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
jaclang/__init__.py,sha256=
|
|
1
|
+
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=EmRY02l9yxNJ2ObeK0Nnb1e0vKcacUu_hG_X2_5DNFY,16705
|
|
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=
|
|
10
|
-
jaclang/compiler/codeloc.py,sha256=
|
|
11
|
-
jaclang/compiler/compile.py,sha256=
|
|
8
|
+
jaclang/compiler/__init__.py,sha256=0c0Eu3TPoo--hxvciM6kn9_A9YKjQOQdXX-yYILWFNM,2742
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=FlzEAKMj5aLkM1aqCTgh7r6VvyA-jL4zeXOeqhd7ijA,140564
|
|
10
|
+
jaclang/compiler/codeloc.py,sha256=clz7ofOE0Rgf7eqco3zEO31mCbG3Skj9-rLooliBeik,2942
|
|
11
|
+
jaclang/compiler/compile.py,sha256=eYoKSLCgzWQBMaRkeXSv1D_EuixEtrFP1iSjxUGtHzs,3773
|
|
12
12
|
jaclang/compiler/constant.py,sha256=gKccXK4Qf3CWuv8J1oaWrwqdP7CRIf7ndayquRx6Xgs,9007
|
|
13
13
|
jaclang/compiler/jac.lark,sha256=NmoNb_hE4xKgVEo9aFreE9RdGOIvCBq-NU0Qs5Js6VE,17393
|
|
14
|
-
jaclang/compiler/parser.py,sha256=
|
|
14
|
+
jaclang/compiler/parser.py,sha256=JM9ERU5vCnX5jEoYrEZL3Ccn_ReYaC60R408VK1N8zE,142596
|
|
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=CgtuBrVjfG7PgTCLNSjxgFffYR5naTC3tIjOjsXx5gk,5597
|
|
17
17
|
jaclang/compiler/passes/main/__init__.py,sha256=DLbOP_7q8jJ9-ME_8A0d_FVk2crh9etTmTGQmtKWLnY,973
|
|
18
18
|
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=AuE6xgW079Bvs_K02XWVz5qJkCIuizC6t1zIiQ5s-qE,5328
|
|
19
|
-
jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=
|
|
19
|
+
jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=SAXCoyFVWWjBXcFTjIZSVQbL1P9Rd-qDeh4H4-Cbl18,6900
|
|
20
20
|
jaclang/compiler/passes/main/def_use_pass.py,sha256=68Uts_v-R-9mzBXC9EfXpcBEQwqnVcpL2JD0sri88AY,9674
|
|
21
|
-
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256
|
|
22
|
-
jaclang/compiler/passes/main/import_pass.py,sha256=
|
|
21
|
+
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=46JIeqkgkB3doy4F6FAUDvv_wTutMwl4NQI5ykbQ-So,25571
|
|
22
|
+
jaclang/compiler/passes/main/import_pass.py,sha256=5nJp6BERceXQs8k8JqXVYp8wZ1wVoSga1GoUtCLA8EA,12880
|
|
23
23
|
jaclang/compiler/passes/main/py_collect_dep_pass.py,sha256=lzMOYH8TarhkJFt0vqvZFknthZ08OjsdO7tO2u2EN40,2834
|
|
24
24
|
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=ACUhGsLq34N-Sfo96IAgkTnds9ZY6I7J6okr6rFvPpo,142105
|
|
25
|
-
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=
|
|
25
|
+
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=khGbMeUUfTvNRG4Jb3i6_A2zNNbOgdB24uhPwU28Xqs,94159
|
|
26
26
|
jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
|
|
27
|
-
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=
|
|
27
|
+
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=snbqUIPtPcD9ZKsItOlKGVnujoMGFwF8XNP0GvxS9AI,8628
|
|
28
28
|
jaclang/compiler/passes/main/pyout_pass.py,sha256=QWVB-AyVBha3OespP89LMuslRsdG2niZErwtnRPiURM,3191
|
|
29
|
-
jaclang/compiler/passes/main/registry_pass.py,sha256=
|
|
29
|
+
jaclang/compiler/passes/main/registry_pass.py,sha256=BOyBajaUxJ-xQfTOsx-JJcr4-q0hejBZRvNfBPvSFQM,5571
|
|
30
30
|
jaclang/compiler/passes/main/schedules.py,sha256=tkTUTX8aff6pqQYtqt1h2lRbu_n7bVnAov9KmwwDxy0,1417
|
|
31
31
|
jaclang/compiler/passes/main/sub_node_tab_pass.py,sha256=25HEJGBbDlJibyW5MV4ShXQ2vmzG3LDreknV-u2nQjk,1184
|
|
32
32
|
jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=evTt5f1ymlKB4KzH1cm7wSnwWjplsFxVXTQpcrYL4b8,34304
|
|
@@ -41,8 +41,9 @@ jaclang/compiler/passes/main/tests/fixtures/base2.jac,sha256=7XPrAhNRjiFW00nvwta
|
|
|
41
41
|
jaclang/compiler/passes/main/tests/fixtures/blip.jac,sha256=Fx9zqQ8VkiQ6vgzbQv9LWIzNi5S6i0t8vItMr-rmViU,13
|
|
42
42
|
jaclang/compiler/passes/main/tests/fixtures/codegentext.jac,sha256=U9xyk8hDlWM3jUaozQXOD61f5p9SI-_QfDxA68DUYds,562
|
|
43
43
|
jaclang/compiler/passes/main/tests/fixtures/decls.jac,sha256=vPHNZeXuFKLclAFJfe92ajOX7n0ULsvEi5jBoDU-Ns8,123
|
|
44
|
+
jaclang/compiler/passes/main/tests/fixtures/defn_decl_mismatch.jac,sha256=G9DxHjkK50tV7233ZNIaBbUwZL15eZAfqxG-_aCB6tw,312
|
|
44
45
|
jaclang/compiler/passes/main/tests/fixtures/defs_and_uses.jac,sha256=zTTq_0u8ITmODu8rjRloI5Imwf2dICHdiKdOnzcgpbg,901
|
|
45
|
-
jaclang/compiler/passes/main/tests/fixtures/fstrings.jac,sha256=
|
|
46
|
+
jaclang/compiler/passes/main/tests/fixtures/fstrings.jac,sha256=d47PXLSX2GKekOv4mzZxmBWVRF4AGrs6rm6XA_7NCrQ,1135
|
|
46
47
|
jaclang/compiler/passes/main/tests/fixtures/func.jac,sha256=i175hPkR4tgf5SMZOrrCHjAE12mVlf6qUsu0mcJmJBE,297
|
|
47
48
|
jaclang/compiler/passes/main/tests/fixtures/func2.jac,sha256=ZxgLe7VA57daLkqoB8MefdEE8dZIoFv2Dq-Zx-yHKxI,124
|
|
48
49
|
jaclang/compiler/passes/main/tests/fixtures/game1.jac,sha256=oiTadkrYJRUo6ZkHUi7I54J_0GoTTtsNLhhofTlz0uY,263
|
|
@@ -60,18 +61,18 @@ jaclang/compiler/passes/main/tests/fixtures/pygame_mock/constants.py,sha256=1i-O
|
|
|
60
61
|
jaclang/compiler/passes/main/tests/fixtures/pygame_mock/display.py,sha256=uzQZvyHHf4iPAodRBuBxrnwx3CpDPbMxcsGRlUB_9GY,29
|
|
61
62
|
jaclang/compiler/passes/main/tests/fixtures/registry.jac,sha256=1G6amtU1zIFCgq09v7xTp9zZ5sw5IbXHfYVlOo-drPg,993
|
|
62
63
|
jaclang/compiler/passes/main/tests/fixtures/type_info.jac,sha256=64Im2L-R3YF8DEuTt29QE6mJI5PnFe3PiwcDLKa8gOE,661
|
|
63
|
-
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=
|
|
64
|
+
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=WHqHKeN_DNg7Pw9mCLJCeASp9WQifJvYf1aGKBrCOQc,4054
|
|
64
65
|
jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=0ieyoeiDSK2m3dmVN00oJK2TdJhxWwxA1lnxT95wz0A,843
|
|
65
66
|
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=XR0CaqdEQslYz1GXICpF3wko2PDw-tOnHfvgSWjo8TQ,5158
|
|
66
67
|
jaclang/compiler/passes/main/tests/test_pyast_build_pass.py,sha256=LIT4TP-nhtftRtY5rNySRQlim-dWMSlkfUvkhZTk4pc,1383
|
|
67
68
|
jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=6ZpLNYxblzBg6bmWSA0fikNM7nEAR9b9F18LJaO5buM,4679
|
|
68
69
|
jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py,sha256=If8PE4exN5g9o1NRElNC0XdfIwJAp7M7f69rzmYRYUQ,655
|
|
69
|
-
jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=
|
|
70
|
+
jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=Oe2RD_s2ULqwha0FAkOGzMTlXYR7-pWIx5Na9Gt4rYQ,900
|
|
70
71
|
jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI9FNHTewI2r5HO19-JxNGK_NZ01E,821
|
|
71
72
|
jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
|
|
72
|
-
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=
|
|
73
|
+
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=e6UCqajhB0-6Cizy582WN6A7dkRIjHvEFuDS_JDkVw4,2265
|
|
73
74
|
jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=o908glXImFXOlKKTUyxp4rxsso0vJbduli5Rvbd3KXE,1017
|
|
74
|
-
jaclang/compiler/passes/main/type_check_pass.py,sha256=
|
|
75
|
+
jaclang/compiler/passes/main/type_check_pass.py,sha256=nIDrX49L3u7kToW3h-m2XI9FKr9UY_Wn_Y28TsVifZc,4273
|
|
75
76
|
jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
|
|
76
77
|
jaclang/compiler/passes/tool/fuse_comments_pass.py,sha256=CSnuWy4gZfTcWKe0Q7LBikBgWe1zJr0QmNUkgrZ7B38,3657
|
|
77
78
|
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=-J4UOdo5BBMi9raT0KJ4ESVlu_70dzaLRGoWAZGPUyM,91213
|
|
@@ -119,11 +120,11 @@ jaclang/compiler/passes/tool/tests/fixtures/simple_walk_fmt.jac,sha256=6jwYKXxJ1
|
|
|
119
120
|
jaclang/compiler/passes/tool/tests/test_fuse_comments_pass.py,sha256=ZeWHsm7VIyyS8KKpoB2SdlHM4jF22fMfSrfTfxt2MQw,398
|
|
120
121
|
jaclang/compiler/passes/tool/tests/test_jac_format_pass.py,sha256=88OD9fBNzckaUenldlJssCJD7agP8b_hM7xlnV_-WHk,6658
|
|
121
122
|
jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=mTpeE272_OSgWruNqwG6AZJg2AvVHScq-BIeBDv5GMQ,2423
|
|
122
|
-
jaclang/compiler/passes/transform.py,sha256=
|
|
123
|
+
jaclang/compiler/passes/transform.py,sha256=HA7-SiXdlUvJ0jfl-SOBNsmI0E3SAL9NQ-EUtLMM_f8,3325
|
|
123
124
|
jaclang/compiler/passes/utils/__init__.py,sha256=UsI5rUopTUiStAzup4kbPwIwrnC5ofCrqWBCBbM2-k4,35
|
|
124
|
-
jaclang/compiler/passes/utils/mypy_ast_build.py,sha256=
|
|
125
|
+
jaclang/compiler/passes/utils/mypy_ast_build.py,sha256=s2asjk_WRQ5zGV3PjDoRcL6QPJlAWxza37L0id2LC3Y,35274
|
|
125
126
|
jaclang/compiler/semtable.py,sha256=h6522_kAc6ePfWlCmUk-GbHtO8uct0K7aY5rmvlzFBc,5007
|
|
126
|
-
jaclang/compiler/symtable.py,sha256
|
|
127
|
+
jaclang/compiler/symtable.py,sha256=-gp3hC8A1qCpYT_S9E8xpw4ejoPnkNNgkllkEeB9qbE,9997
|
|
127
128
|
jaclang/compiler/tests/__init__.py,sha256=qiXa5UNRBanGOcplFKTT9a_9GEyiv7goq1OzuCjDCFE,27
|
|
128
129
|
jaclang/compiler/tests/fixtures/__init__.py,sha256=udQ0T6rajpW_nMiYKJNckqP8izZ-pH3P4PNTJEln2NU,36
|
|
129
130
|
jaclang/compiler/tests/fixtures/activity.py,sha256=fSvxYDKufsPeQIrbuh031zHw_hdbRv5iK9mS7dD8E54,263
|
|
@@ -133,12 +134,12 @@ jaclang/compiler/tests/fixtures/kwesc.jac,sha256=OXxVL_fwiFuvYO1YX1RHa2hpETSpb0Q
|
|
|
133
134
|
jaclang/compiler/tests/fixtures/mod_doc_test.jac,sha256=aFZpjn7V5lvCHp0lPoGXtdkcY3CK8_-SKeZGruutv4Y,35
|
|
134
135
|
jaclang/compiler/tests/fixtures/staticcheck.jac,sha256=t849--dTkSSjCJX1OiMV-lgao_hIDSKwKVs-aS6IwK8,342
|
|
135
136
|
jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uhulQSDGQ3o6sY,82
|
|
136
|
-
jaclang/compiler/tests/test_importer.py,sha256=
|
|
137
|
+
jaclang/compiler/tests/test_importer.py,sha256=5gcP-oHoQ6i4VWh7_NlDl8uKLlwfbgzoWTd44ugs5Go,2315
|
|
137
138
|
jaclang/compiler/tests/test_parser.py,sha256=Sj9Kz1FghESaPpyx_kEvScs4xvz-vgEdH8yyQJ0iB7M,4820
|
|
138
139
|
jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
|
|
139
|
-
jaclang/langserve/engine.py,sha256=
|
|
140
|
+
jaclang/langserve/engine.py,sha256=2U6sSCXLedVZhbUGFMadSecKUmW23LAk8S99vN7tsyc,20911
|
|
140
141
|
jaclang/langserve/sem_manager.py,sha256=d5QzT9WVYarZfTg1sUF_pTfNMYb65HLz3vX839b5Jeo,14918
|
|
141
|
-
jaclang/langserve/server.py,sha256=
|
|
142
|
+
jaclang/langserve/server.py,sha256=DSiMWy7DwSBM5FO3YersdUrmaoFaEfTRRvqZ44mNMyY,5651
|
|
142
143
|
jaclang/langserve/tests/__init__.py,sha256=iDM47k6c3vahaWhwxpbkdEOshbmX-Zl5x669VONjS2I,23
|
|
143
144
|
jaclang/langserve/tests/defaults.py,sha256=8UWHuCHY-WatPcWFhyX9-4KLuJgODTlLNj0wNnKomIM,7608
|
|
144
145
|
jaclang/langserve/tests/fixtures/base_module_structure.jac,sha256=_ZRaZomsxtRJXhi_yt4pIMtsfh-qMxC-1YFOq4kuxLI,1445
|
|
@@ -160,35 +161,38 @@ jaclang/langserve/tests/pylsp_jsonrpc/exceptions.py,sha256=NGHeFQawZcjoLUcgDmY3b
|
|
|
160
161
|
jaclang/langserve/tests/pylsp_jsonrpc/streams.py,sha256=R80_FvICIkrbdGmNtlemWYaxrr7-XldPgLaASnyv0W8,3332
|
|
161
162
|
jaclang/langserve/tests/session.py,sha256=3pIRoQjZnsnUWIYnO2SpK7c1PAiHMCFrrStNK2tawRM,9572
|
|
162
163
|
jaclang/langserve/tests/test_sem_tokens.py,sha256=HWNaA1CK5qxFeipmd4AAvjAbJSEW4-09hY2UHVfvtlc,9897
|
|
163
|
-
jaclang/langserve/tests/test_server.py,sha256=
|
|
164
|
-
jaclang/langserve/utils.py,sha256=
|
|
164
|
+
jaclang/langserve/tests/test_server.py,sha256=cZcQTMCMhJw4FS1BDz2oAmQb0J1mXdb5BcJLTDvm7YM,22912
|
|
165
|
+
jaclang/langserve/utils.py,sha256=edZCrq8ZFolao-rvv5RGPxtnEh6NmhrxOgPh8VxmEPs,15019
|
|
165
166
|
jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
|
|
166
|
-
jaclang/plugin/builtin.py,sha256=
|
|
167
|
-
jaclang/plugin/default.py,sha256=
|
|
168
|
-
jaclang/plugin/feature.py,sha256=
|
|
169
|
-
jaclang/plugin/
|
|
167
|
+
jaclang/plugin/builtin.py,sha256=zNTbe5knJrGFgJRa4l4hMzzuij6iXFyVqRTxputUHIo,1307
|
|
168
|
+
jaclang/plugin/default.py,sha256=7cxX9-hCPIchfm0mT4IaBJzAuAw0T_UFrxleGhUHcLY,45429
|
|
169
|
+
jaclang/plugin/feature.py,sha256=FhkzyPTk1N0faruRlyX13NYSPsRj6g--Jzfwes-_osE,16602
|
|
170
|
+
jaclang/plugin/plugin.md,sha256=B252QTH3c8uZyvXTbGmZBafZtdXstFC5vT5jIN_gS4U,9994
|
|
171
|
+
jaclang/plugin/spec.py,sha256=-ZaDdVfKLwQ0TgxvSZq4YQheNxyR6ljICIUthjRlm4g,14346
|
|
170
172
|
jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
|
|
171
173
|
jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
|
|
172
174
|
jaclang/plugin/tests/fixtures/impl_match_impl.jac,sha256=k1385r7Hdlq6mUKxEHa3VOKJUIWH08hYg2kErhbYwFM,31
|
|
173
|
-
jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=
|
|
175
|
+
jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=EwCQcbVt2FHlsH0PGw2WbFtk5mTQH2pP64RLGi0A2Zg,1662
|
|
174
176
|
jaclang/plugin/tests/fixtures/simple_node_connection.jac,sha256=KdbpACWtnj92TqQqEunwoI4VKhlnhcJCKMkbgh0Xqxg,1067
|
|
175
177
|
jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8ICBZEBZzHhqha0xQFFBK_DSI,624
|
|
176
|
-
jaclang/plugin/tests/test_features.py,sha256=
|
|
178
|
+
jaclang/plugin/tests/test_features.py,sha256=sK9d2UazofGl9qYZO_ODKmOHZY8E4fnXNoyw-_KQI9A,2344
|
|
177
179
|
jaclang/plugin/tests/test_jaseci.py,sha256=3c5MtOoxxHtMkaWduaqVim1xcv8FyQXkgBh9AC9eNCE,20315
|
|
178
180
|
jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
181
|
jaclang/runtimelib/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
|
|
180
|
-
jaclang/runtimelib/architype.py,sha256=
|
|
181
|
-
jaclang/runtimelib/constructs.py,sha256=
|
|
182
|
-
jaclang/runtimelib/context.py,sha256=
|
|
183
|
-
jaclang/runtimelib/importer.py,sha256=
|
|
184
|
-
jaclang/runtimelib/machine.py,sha256=
|
|
185
|
-
jaclang/runtimelib/memory.py,sha256=
|
|
182
|
+
jaclang/runtimelib/architype.py,sha256=_4xCawHqmM5ASXwq9wxjStvqJlPdi9zJ5wvKU_QFt6U,7910
|
|
183
|
+
jaclang/runtimelib/constructs.py,sha256=1ARnsPrDi1UvyaFRhGRhO0kj0fnIZ2HbHF7O3itB-ZQ,796
|
|
184
|
+
jaclang/runtimelib/context.py,sha256=DjCkj1S6WLBWbNMkhUjqPYIhxqXV0XjJ1Mpjy7WR4g0,5538
|
|
185
|
+
jaclang/runtimelib/importer.py,sha256=a6ORKrDfK-jKXopgyZHz188O-VI2NflFQo7VTUVvqOw,14592
|
|
186
|
+
jaclang/runtimelib/machine.py,sha256=8gyGLxURqfy0bLXMWyOwjIX-rH8Mz11b-jV6Ta5liTk,11566
|
|
187
|
+
jaclang/runtimelib/memory.py,sha256=SlzDYNi_R1Jj5WfLfW2y0Rta5GAD6CIKiONEo4LbfHI,5033
|
|
186
188
|
jaclang/runtimelib/test.py,sha256=HRCl3cf0uPTe58Kcx_sBUb6ow8J53rnmpFOhA7g9oAA,2851
|
|
187
189
|
jaclang/runtimelib/utils.py,sha256=P9gVE3XFhRzr745RCDXXIP391AcsL4aL_6HrXws_qa4,8155
|
|
188
|
-
jaclang/settings.py,sha256=
|
|
190
|
+
jaclang/settings.py,sha256=iLgVEA2fyARM5u-qMMMaEvNr88Qxej2NGZviw-R95kU,3681
|
|
189
191
|
jaclang/tests/fixtures/abc.jac,sha256=HZvLz6IEt3Snlgg8Czs-N4emLjg4fT3IbTo95d3Gdww,1747
|
|
190
192
|
jaclang/tests/fixtures/access_checker.jac,sha256=UVoY7sYW-R0ms2HDA4HXQ5xJNiW0vEbY2T5CCY1avus,281
|
|
191
193
|
jaclang/tests/fixtures/access_modifier.jac,sha256=NJHXbu_N_cWpTkjJnwcHzWkEk2kroaQ8aaalVxPXAW8,2587
|
|
194
|
+
jaclang/tests/fixtures/arch_create_util.jac,sha256=3pRe9JyCGO_8Z7XYnSKPehyOAAPf6747fHvgrMz6wQU,133
|
|
195
|
+
jaclang/tests/fixtures/arch_rel_import_creation.jac,sha256=B9VlwYayHYBUsAKpiapPgv93apMXiWcILJ13hXyAOCs,624
|
|
192
196
|
jaclang/tests/fixtures/arithmetic_bug.jac,sha256=iiO3ZwTi7R1U6-flV4tGbxDHXsw8GnaLEzVNGTPdMUA,135
|
|
193
197
|
jaclang/tests/fixtures/assign_compr.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
|
|
194
198
|
jaclang/tests/fixtures/assign_compr_dup.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
|
|
@@ -196,13 +200,14 @@ jaclang/tests/fixtures/baddy.jac,sha256=waLlwMyW_JCE1x_SuVzRER1RBe1j3XiLTw-0Njzn
|
|
|
196
200
|
jaclang/tests/fixtures/baddy.test.jac,sha256=Uq-Nlf44QUAtbOfDCbc9_ceLxmo31PILDTSzAv8nJq4,33
|
|
197
201
|
jaclang/tests/fixtures/bar.jac,sha256=XZWOrzgMQed2R611DLfzCvWUT4a4gTYZXWRYvizMb18,782
|
|
198
202
|
jaclang/tests/fixtures/blankwithentry.jac,sha256=lnMDDKyKnldsUIx1AVCIHt47KY3gR2CZYhox8663sLM,53
|
|
199
|
-
jaclang/tests/fixtures/builtin_dotgen.jac,sha256=
|
|
203
|
+
jaclang/tests/fixtures/builtin_dotgen.jac,sha256=U2r_bmSsMDuJWuo9vYoRCgRIo9NA9-VkaaiacvAMeS8,1814
|
|
200
204
|
jaclang/tests/fixtures/builtins_test.jac,sha256=1eJXipIFpa8IDjKv20TjAW_k4hTtJzNT1cKnQOAVt28,244
|
|
201
205
|
jaclang/tests/fixtures/byllmissue.jac,sha256=vAwxzbRNx5yOM3HTDSH7wafPYXU7AunBOZmgdsT2rhc,86
|
|
202
206
|
jaclang/tests/fixtures/chandra_bugs.jac,sha256=vcBjZ4P7S1PPUs-_0Stt779pus95RJTMs1x_-m0w7yY,282
|
|
203
207
|
jaclang/tests/fixtures/chandra_bugs2.jac,sha256=OZP6JOsIr8WK-joPZ54-LcbVVvtuZ5ILPdkynSSx3uU,559
|
|
204
208
|
jaclang/tests/fixtures/circle_pysolo.py,sha256=TAJTCOjrUl80oDke5wl6ZyBJQsy37Hu6gYdqcO-tQlY,2477
|
|
205
209
|
jaclang/tests/fixtures/cls_method.jac,sha256=FXvQzQpa00yvesEvnuZ9q0lA-dtGDeFR4sWLKZ4NJSc,737
|
|
210
|
+
jaclang/tests/fixtures/create_dynamic_architype.jac,sha256=DTm761q0q6CRwduH3xyeCRs-epuPgZTRysWG_3fCxS8,846
|
|
206
211
|
jaclang/tests/fixtures/dblhello.jac,sha256=2CKdYZj35AXzvA2SCBHhgvG5f0bnlpLdQ36eqKCmI-M,69
|
|
207
212
|
jaclang/tests/fixtures/deep/deeper/deep_outer_import.jac,sha256=omdlOBM0cuUAHhmxYC02OcpXNowiA5wrIZOs7jQFHgE,233
|
|
208
213
|
jaclang/tests/fixtures/deep/deeper/deep_outer_import2.jac,sha256=YlAclVAukzVeCNbXZU6iTl8Rj1uXpUJ1WR7Ei2vhbqc,252
|
|
@@ -218,19 +223,21 @@ jaclang/tests/fixtures/deep_import_mods.jac,sha256=MBGytfHfyVA9GjH9wKJ1iLyAdNkRj
|
|
|
218
223
|
jaclang/tests/fixtures/deferred_field.jac,sha256=pOO6YT7vwkGr4frOSvWzGx3pO5jyZxeQInuEukcVF_Q,177
|
|
219
224
|
jaclang/tests/fixtures/disconn.jac,sha256=gRbNh6R6t-cTdB6lT4M7HW7cdGoYoGV5Bnp3NhW7DX4,517
|
|
220
225
|
jaclang/tests/fixtures/dynamic_architype.jac,sha256=jt74XfBZc5A6yWdk_DOTUhAg__TM_l6biHOxzTWQXq8,1015
|
|
221
|
-
jaclang/tests/fixtures/edge_node_walk.jac,sha256=
|
|
226
|
+
jaclang/tests/fixtures/edge_node_walk.jac,sha256=x_eD24TBYFv9xLgaDevE-7klwJT9oj0dpCOeZe72wNs,959
|
|
222
227
|
jaclang/tests/fixtures/edge_ops.jac,sha256=b6XsApxIQUelPPAfReQor3ha2iDtAbNVpcihxTOyTgs,967
|
|
223
|
-
jaclang/tests/fixtures/edges_walk.jac,sha256=
|
|
228
|
+
jaclang/tests/fixtures/edges_walk.jac,sha256=nj_uxQ8Kx1x1ghIf010OngxlpPu8Ah1Y7kfYLGJ4oPo,798
|
|
224
229
|
jaclang/tests/fixtures/edgetypeissue.jac,sha256=ZsJuNdtmD_fu2b7sDJ_tWZjoDI_rxouDEcSWkahhBS0,118
|
|
225
230
|
jaclang/tests/fixtures/entry_exit.jac,sha256=Vl4f5TNCXEfTDurPiOnPWShW15RWAp5Rm4L1tI5bXOo,763
|
|
226
|
-
jaclang/tests/fixtures/enum_inside_archtype.jac,sha256=
|
|
231
|
+
jaclang/tests/fixtures/enum_inside_archtype.jac,sha256=_H4eKBDAO_DfCinAK3aWUOa59XUFvUZTZn5ClhrpdLc,428
|
|
227
232
|
jaclang/tests/fixtures/err.impl.jac,sha256=bCW5RiPOoiEiBJCcCEsPsegBTA98mqY57UYiq5O2Skg,41
|
|
228
233
|
jaclang/tests/fixtures/err.jac,sha256=Df-QWvUlVa2Tc3QtKXNv4VU63Xefmp_iC-BS-1VuOEI,62
|
|
229
234
|
jaclang/tests/fixtures/err2.jac,sha256=x8h69NTVMGJa_UicY-CZblLMdeH09myTeiYqNFamiK0,50
|
|
230
235
|
jaclang/tests/fixtures/err_runtime.jac,sha256=giiZvN1x_cHYWdXtghdzasxYjUp2MNOdH6Pf2H6-aGI,177
|
|
236
|
+
jaclang/tests/fixtures/expr_type.jac,sha256=96zQmUU8EX9sMm9E-eExMX43M9whpgmUkJ9v-XYEcKQ,914
|
|
231
237
|
jaclang/tests/fixtures/foo.jac,sha256=53v2aODH1u73xi8B4UdxyM8Ow6C29H-se8yNwOXs0lg,1083
|
|
232
238
|
jaclang/tests/fixtures/game1.jac,sha256=oiTadkrYJRUo6ZkHUi7I54J_0GoTTtsNLhhofTlz0uY,263
|
|
233
|
-
jaclang/tests/fixtures/gendot_bubble_sort.jac,sha256=
|
|
239
|
+
jaclang/tests/fixtures/gendot_bubble_sort.jac,sha256=M6zepcnGyMJMrECEz3DSPkCTNVLtcDIp63VTxHTwpXo,1538
|
|
240
|
+
jaclang/tests/fixtures/glob_multivar_statement.jac,sha256=QlWLJm-7gdCEIDfja6yRQUjwMxAgWN-P-DpMUNVC7_A,220
|
|
234
241
|
jaclang/tests/fixtures/guess_game.jac,sha256=S2sWoF22SY2PbadKQX45QJFtw9lvzwFvrwbG0kbutPE,856
|
|
235
242
|
jaclang/tests/fixtures/has_goodness.jac,sha256=CmhMXiRLCkdrqpGbSm2e7mBf0hCBgCk5s9GQ6gbCjdA,313
|
|
236
243
|
jaclang/tests/fixtures/hash_init_check.jac,sha256=Yrh3Rmi4SHIbY_c8EjHzcnwXVXas9ufbCAnkdRa3EyQ,205
|
|
@@ -274,7 +281,7 @@ jaclang/tests/fixtures/pygame_mock/inner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
|
274
281
|
jaclang/tests/fixtures/pygame_mock/inner/iner_mod.py,sha256=6_vik8u9cHHQKWMtzRegqOtVdXsTP72Obh4K0M98KDY,38
|
|
275
282
|
jaclang/tests/fixtures/random_check.jac,sha256=o8MxWK9_QjxQh9nxBQKYUdsaxIPxlzUJFpxPr-lU588,1523
|
|
276
283
|
jaclang/tests/fixtures/raw_byte_string.jac,sha256=y5FA0rtLC5do8vqXfCxCF1TP7l8L20nI56WRFdu8x9k,337
|
|
277
|
-
jaclang/tests/fixtures/registry.jac,sha256=
|
|
284
|
+
jaclang/tests/fixtures/registry.jac,sha256=huAQGtL_5wtpiP4C675hU6mWFNrrACY_Oc0n5IV0YdI,1450
|
|
278
285
|
jaclang/tests/fixtures/run_test.jac,sha256=kR-kwJQ-UiRpJOZnhXws3Vqa4eK64-85rz72t9Zr94k,164
|
|
279
286
|
jaclang/tests/fixtures/semstr.jac,sha256=hC7oSmHIkPOHzS7r3lv8VkiBAmi2D525uKIugo_XL9I,739
|
|
280
287
|
jaclang/tests/fixtures/simple_archs.jac,sha256=zHv-fnPoCtOwlk80d3AORjOwawapAdGXWBUGiuFLvYk,380
|
|
@@ -286,23 +293,26 @@ jaclang/tests/fixtures/try_finally.jac,sha256=I4bjOZz0vZbY1rQZlPy-RCMYP2-LQwtsSh
|
|
|
286
293
|
jaclang/tests/fixtures/tupleunpack.jac,sha256=AP6rbofc0VmsTNxInY6WLGRKWVY6u8ut0uzQX_52QyI,64
|
|
287
294
|
jaclang/tests/fixtures/tuplytuples.jac,sha256=6qiXn5OV_qn4cqKwROjJ1VuBAh0nbUGpp-5vtH9n_Dg,344
|
|
288
295
|
jaclang/tests/fixtures/type_info.jac,sha256=4Cw31ef5gny6IS0kLzgeSO-7ArEH1HgFFFip1BGQhZM,316
|
|
296
|
+
jaclang/tests/fixtures/visit_order.jac,sha256=5_U-sJX_TkY9A1ho4ibCr-53pFYRtkl97FfMlhoke3w,260
|
|
289
297
|
jaclang/tests/fixtures/walker_override.jac,sha256=Ok58ZAgxuV6aECNxYrjbbyAWSiqIbnly3N3O6cD563o,271
|
|
290
298
|
jaclang/tests/fixtures/walker_update.jac,sha256=_bN3ASAN6LpfIQFfDMRnrx2oteM-ef7OrbE91f2qvrs,463
|
|
291
299
|
jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2Otf_rFnPy8,466
|
|
300
|
+
jaclang/tests/foo/__init__.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
+
jaclang/tests/main.jac,sha256=UJ4dASLCMA3wW78Rq3AHcq5GfXVY5QBm2S16OCrR1hQ,13
|
|
292
302
|
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
293
|
-
jaclang/tests/test_cli.py,sha256=
|
|
294
|
-
jaclang/tests/test_language.py,sha256=
|
|
303
|
+
jaclang/tests/test_cli.py,sha256=pzkYDmyhDdFU1v8p27T3N17DnOgXhe-f8iFI-q3owp8,15850
|
|
304
|
+
jaclang/tests/test_language.py,sha256=ktZhgYVeT1_RR7D6OEA_16OlLFpKVK5naO1V4m2deSg,48612
|
|
295
305
|
jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
|
|
296
306
|
jaclang/tests/test_reference.py,sha256=FISQpZbB8cmRoAeJOFfXUy13WVxykZjpkPSb1OTotfI,3340
|
|
297
307
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
298
308
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
299
|
-
jaclang/utils/helpers.py,sha256=
|
|
300
|
-
jaclang/utils/lang_tools.py,sha256=
|
|
309
|
+
jaclang/utils/helpers.py,sha256=TXZecVMg3a1npUH9w3wCQiLX7uHX9-Rfk89HoFDbSDE,9835
|
|
310
|
+
jaclang/utils/lang_tools.py,sha256=HECF9zXH8si6Q_oBhSSoOMmv-k8ppKPb6RAlX_wZPWE,10177
|
|
301
311
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
302
312
|
jaclang/utils/test.py,sha256=27TS33HkjKMy-hb-E4J1qQ3aBVqBPJaI_222ZT7P5TQ,6053
|
|
303
313
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
304
314
|
jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
|
|
305
|
-
jaclang/utils/treeprinter.py,sha256=
|
|
315
|
+
jaclang/utils/treeprinter.py,sha256=ysBZQ9XwE03M58qmGpoZ9L3ZR0yVDQaPG7EHmz-76eM,13413
|
|
306
316
|
jaclang/vendor/__init__.py,sha256=tEcp2kl3hMvF2d6X6WlJSAGuAMYOVCKCstXuPMQSR4Q,265
|
|
307
317
|
jaclang/vendor/attr/__init__.py,sha256=WlXJN6ICB0Y_HZ0lmuTUgia0kuSdn2p67d4N6cYxNZM,3307
|
|
308
318
|
jaclang/vendor/attr/__init__.pyi,sha256=u08EujYHy_rSyebNn-I9Xv2S_cXmtA9xWGc0cBsyl18,16976
|
|
@@ -1525,7 +1535,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1525
1535
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1526
1536
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1527
1537
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1528
|
-
jaclang-0.7.
|
|
1529
|
-
jaclang-0.7.
|
|
1530
|
-
jaclang-0.7.
|
|
1531
|
-
jaclang-0.7.
|
|
1538
|
+
jaclang-0.7.25.dist-info/METADATA,sha256=Z9pmxYuQBoKzqaxdUdSceDoh3Jrp_hNfgkcji7cgeA0,4965
|
|
1539
|
+
jaclang-0.7.25.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
1540
|
+
jaclang-0.7.25.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1541
|
+
jaclang-0.7.25.dist-info/RECORD,,
|
|
File without changes
|