jaclang 0.7.2__py3-none-any.whl → 0.7.5__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 +2 -2
- jaclang/compiler/absyntree.py +337 -273
- jaclang/compiler/codeloc.py +2 -2
- jaclang/compiler/constant.py +2 -0
- jaclang/compiler/jac.lark +25 -19
- jaclang/compiler/parser.py +115 -92
- jaclang/compiler/passes/main/access_modifier_pass.py +15 -9
- jaclang/compiler/passes/main/def_impl_match_pass.py +25 -13
- jaclang/compiler/passes/main/def_use_pass.py +48 -17
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py +34 -34
- jaclang/compiler/passes/main/import_pass.py +8 -6
- jaclang/compiler/passes/main/pyast_gen_pass.py +97 -42
- jaclang/compiler/passes/main/pyast_load_pass.py +47 -12
- jaclang/compiler/passes/main/pyjac_ast_link_pass.py +19 -10
- jaclang/compiler/passes/main/registry_pass.py +6 -6
- jaclang/compiler/passes/main/sym_tab_build_pass.py +30 -72
- jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py +21 -4
- jaclang/compiler/passes/main/tests/test_def_use_pass.py +5 -10
- jaclang/compiler/passes/main/type_check_pass.py +2 -1
- jaclang/compiler/passes/tool/jac_formatter_pass.py +30 -9
- jaclang/compiler/passes/tool/tests/fixtures/corelib.jac +16 -0
- jaclang/compiler/passes/tool/tests/fixtures/corelib_fmt.jac +16 -0
- jaclang/compiler/passes/transform.py +2 -4
- jaclang/{core/registry.py → compiler/semtable.py} +1 -3
- jaclang/compiler/symtable.py +25 -37
- jaclang/compiler/tests/test_parser.py +2 -2
- jaclang/core/aott.py +8 -8
- jaclang/core/{construct.py → architype.py} +25 -240
- jaclang/core/constructs.py +44 -0
- jaclang/core/context.py +157 -0
- jaclang/core/importer.py +18 -9
- jaclang/core/memory.py +99 -0
- jaclang/core/test.py +90 -0
- jaclang/core/utils.py +2 -2
- jaclang/langserve/engine.py +32 -19
- jaclang/langserve/tests/fixtures/circle.jac +16 -12
- jaclang/langserve/tests/fixtures/circle_err.jac +3 -3
- jaclang/langserve/tests/test_server.py +3 -12
- jaclang/langserve/utils.py +10 -6
- jaclang/plugin/builtin.py +1 -1
- jaclang/plugin/default.py +21 -7
- jaclang/plugin/feature.py +24 -6
- jaclang/plugin/spec.py +17 -19
- jaclang/settings.py +3 -0
- jaclang/tests/fixtures/abc.jac +16 -12
- jaclang/tests/fixtures/byllmissue.jac +9 -0
- jaclang/tests/fixtures/edgetypetest.jac +16 -0
- jaclang/tests/fixtures/impl_match_confused.impl.jac +1 -0
- jaclang/tests/fixtures/impl_match_confused.jac +5 -0
- jaclang/tests/fixtures/maxfail_run_test.jac +17 -5
- jaclang/tests/fixtures/run_test.jac +17 -5
- jaclang/tests/test_bugs.py +19 -0
- jaclang/tests/test_cli.py +1 -1
- jaclang/tests/test_language.py +56 -1
- jaclang/tests/test_reference.py +1 -1
- jaclang/utils/lang_tools.py +5 -4
- jaclang/utils/test.py +2 -1
- jaclang/utils/treeprinter.py +22 -8
- {jaclang-0.7.2.dist-info → jaclang-0.7.5.dist-info}/METADATA +1 -1
- {jaclang-0.7.2.dist-info → jaclang-0.7.5.dist-info}/RECORD +62 -54
- {jaclang-0.7.2.dist-info → jaclang-0.7.5.dist-info}/WHEEL +0 -0
- {jaclang-0.7.2.dist-info → jaclang-0.7.5.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:walker:gen_outline:can:get_highlights {}
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
-
glob x = 5,y=2;
|
|
2
|
-
|
|
3
|
-
test
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
glob x = 5, y = 2;
|
|
2
|
+
|
|
3
|
+
test a {
|
|
4
|
+
check assertAlmostEqual(5, x);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
test b {
|
|
8
|
+
check assertIn("l", "llm");
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
test c {
|
|
12
|
+
check assertEqual(x - y, 3);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
test d {
|
|
16
|
+
check assertEqual(1, 2);
|
|
17
|
+
}
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
-
glob a = 5,b=2;
|
|
2
|
-
|
|
3
|
-
test
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
glob a = 5, b = 2;
|
|
2
|
+
|
|
3
|
+
test t1 {
|
|
4
|
+
check assertAlmostEqual(a, 6);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
test t2 {
|
|
8
|
+
check assertTrue(a != b);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
test t3 {
|
|
12
|
+
check assertIn("d", "abc");
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
test t4 {
|
|
16
|
+
check assertEqual(a - b, 3);
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Test Jac language generally."""
|
|
2
|
+
|
|
3
|
+
from jaclang.compiler.compile import jac_file_to_pass
|
|
4
|
+
from jaclang.utils.test import TestCase
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class JacBugTests(TestCase):
|
|
8
|
+
"""Test pass module."""
|
|
9
|
+
|
|
10
|
+
def setUp(self) -> None:
|
|
11
|
+
"""Set up test."""
|
|
12
|
+
return super().setUp()
|
|
13
|
+
|
|
14
|
+
def test_impl_match_confusion_issue(self) -> None:
|
|
15
|
+
"""Basic test for symtable support for inheritance."""
|
|
16
|
+
mypass = jac_file_to_pass(
|
|
17
|
+
self.fixture_abs_path("impl_match_confused.jac"),
|
|
18
|
+
)
|
|
19
|
+
self.assertEqual(len(mypass.errors_had), 1)
|
jaclang/tests/test_cli.py
CHANGED
|
@@ -112,7 +112,7 @@ class JacCliTests(TestCase):
|
|
|
112
112
|
cli.tool("ir", ["ast", f"{self.fixture_abs_path('type_info.jac')}"])
|
|
113
113
|
sys.stdout = sys.__stdout__
|
|
114
114
|
stdout_value = captured_output.getvalue()
|
|
115
|
-
self.assertEqual(stdout_value.count("type_info.ServerWrapper"),
|
|
115
|
+
self.assertEqual(stdout_value.count("type_info.ServerWrapper"), 7)
|
|
116
116
|
self.assertEqual(stdout_value.count("builtins.int"), 2)
|
|
117
117
|
self.assertEqual(stdout_value.count("builtins.str"), 7)
|
|
118
118
|
|
jaclang/tests/test_language.py
CHANGED
|
@@ -7,9 +7,11 @@ import sys
|
|
|
7
7
|
import sysconfig
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
import jaclang.compiler.passes.main as passes
|
|
10
11
|
from jaclang import jac_import
|
|
11
12
|
from jaclang.cli import cli
|
|
12
13
|
from jaclang.compiler.compile import jac_file_to_pass, jac_pass_to_pass, jac_str_to_pass
|
|
14
|
+
from jaclang.compiler.passes.main.schedules import py_code_gen_typed
|
|
13
15
|
from jaclang.plugin.feature import JacFeature as Jac
|
|
14
16
|
from jaclang.settings import settings
|
|
15
17
|
from jaclang.utils.test import TestCase
|
|
@@ -857,7 +859,18 @@ class JacLanguageTests(TestCase):
|
|
|
857
859
|
"""Test conn assign on edges."""
|
|
858
860
|
Jac.get_root()._jac_.edges.clear()
|
|
859
861
|
mypass = jac_file_to_pass(
|
|
860
|
-
self.fixture_abs_path("../../../examples/micro/simple_walk.jac")
|
|
862
|
+
self.fixture_abs_path("../../../examples/micro/simple_walk.jac"),
|
|
863
|
+
schedule=py_code_gen_typed,
|
|
864
|
+
)
|
|
865
|
+
self.assertEqual(len(mypass.errors_had), 0)
|
|
866
|
+
self.assertEqual(len(mypass.warnings_had), 0)
|
|
867
|
+
|
|
868
|
+
def test_ds_type_check_pass2(self) -> None:
|
|
869
|
+
"""Test conn assign on edges."""
|
|
870
|
+
Jac.get_root()._jac_.edges.clear()
|
|
871
|
+
mypass = jac_file_to_pass(
|
|
872
|
+
self.fixture_abs_path("../../../examples/guess_game/guess_game5.jac"),
|
|
873
|
+
schedule=py_code_gen_typed,
|
|
861
874
|
)
|
|
862
875
|
self.assertEqual(len(mypass.errors_had), 0)
|
|
863
876
|
self.assertEqual(len(mypass.warnings_had), 0)
|
|
@@ -879,3 +892,45 @@ class JacLanguageTests(TestCase):
|
|
|
879
892
|
sys.stdout = sys.__stdout__
|
|
880
893
|
stdout_value = captured_output.getvalue()
|
|
881
894
|
self.assertIn("Test Passed", stdout_value)
|
|
895
|
+
|
|
896
|
+
def test_multiline_single_tok(self) -> None:
|
|
897
|
+
"""Test conn assign on edges."""
|
|
898
|
+
Jac.get_root()._jac_.edges.clear()
|
|
899
|
+
mypass = jac_file_to_pass(self.fixture_abs_path("byllmissue.jac"))
|
|
900
|
+
self.assertIn("2:5 - 4:8", mypass.ir.pp())
|
|
901
|
+
|
|
902
|
+
def test_single_impl_annex(self) -> None:
|
|
903
|
+
"""Basic test for pass."""
|
|
904
|
+
mypass = jac_file_to_pass(
|
|
905
|
+
self.fixture_abs_path("../../../examples/manual_code/circle_pure.jac"),
|
|
906
|
+
target=passes.JacImportPass,
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
self.assertEqual(mypass.ir.pp().count("AbilityDef - (o)Circle.(c)area"), 1)
|
|
910
|
+
self.assertIsNone(mypass.ir.sym_tab)
|
|
911
|
+
mypass = jac_file_to_pass(
|
|
912
|
+
self.fixture_abs_path("../../../examples/manual_code/circle_pure.jac"),
|
|
913
|
+
target=passes.SymTabBuildPass,
|
|
914
|
+
)
|
|
915
|
+
self.assertEqual(
|
|
916
|
+
len([i for i in mypass.ir.sym_tab.kid if i.name == "circle_pure.impl"]),
|
|
917
|
+
1,
|
|
918
|
+
)
|
|
919
|
+
|
|
920
|
+
def test_inherit_baseclass_sym(self) -> None:
|
|
921
|
+
"""Basic test for symtable support for inheritance."""
|
|
922
|
+
mypass = jac_file_to_pass(
|
|
923
|
+
self.fixture_abs_path("../../../examples/guess_game/guess_game4.jac"),
|
|
924
|
+
target=passes.DefUsePass,
|
|
925
|
+
)
|
|
926
|
+
table = None
|
|
927
|
+
for i in mypass.ir.sym_tab.kid:
|
|
928
|
+
print(i.name)
|
|
929
|
+
if i.name == "GuessTheNumberGame":
|
|
930
|
+
for j in i.kid:
|
|
931
|
+
if j.name == "play":
|
|
932
|
+
table = j
|
|
933
|
+
break
|
|
934
|
+
break
|
|
935
|
+
self.assertIsNotNone(table)
|
|
936
|
+
self.assertIsNotNone(table.lookup("attempts"))
|
jaclang/tests/test_reference.py
CHANGED
jaclang/utils/lang_tools.py
CHANGED
|
@@ -9,6 +9,7 @@ from typing import List, Optional, Type
|
|
|
9
9
|
import jaclang.compiler.absyntree as ast
|
|
10
10
|
from jaclang.compiler.compile import jac_file_to_pass
|
|
11
11
|
from jaclang.compiler.passes.main.pyast_load_pass import PyastBuildPass
|
|
12
|
+
from jaclang.compiler.passes.main.schedules import py_code_gen, type_checker_sched
|
|
12
13
|
from jaclang.compiler.passes.main.schedules import py_code_gen_typed
|
|
13
14
|
from jaclang.compiler.symtable import SymbolTable
|
|
14
15
|
from jaclang.utils.helpers import auto_generate_refs, pascal_to_snake
|
|
@@ -81,8 +82,8 @@ class AstTool:
|
|
|
81
82
|
"JacSource",
|
|
82
83
|
"EmptyToken",
|
|
83
84
|
"AstSymbolNode",
|
|
85
|
+
"AstSymbolStubNode",
|
|
84
86
|
"AstAccessNode",
|
|
85
|
-
"TokenSymbol",
|
|
86
87
|
"Literal",
|
|
87
88
|
"AstDocNode",
|
|
88
89
|
"AstSemStrNode",
|
|
@@ -97,7 +98,7 @@ class AstTool:
|
|
|
97
98
|
"ArchBlockStmt",
|
|
98
99
|
"EnumBlockStmt",
|
|
99
100
|
"CodeBlockStmt",
|
|
100
|
-
"
|
|
101
|
+
"NameAtom",
|
|
101
102
|
"ArchSpec",
|
|
102
103
|
"MatchPattern",
|
|
103
104
|
]
|
|
@@ -234,8 +235,8 @@ class AstTool:
|
|
|
234
235
|
return f"Error While Jac to Py AST conversion: {e}"
|
|
235
236
|
else:
|
|
236
237
|
ir = jac_file_to_pass(
|
|
237
|
-
file_name, schedule=
|
|
238
|
-
).ir
|
|
238
|
+
file_name, schedule=[*(py_code_gen[:-1]), *type_checker_sched]
|
|
239
|
+
).ir
|
|
239
240
|
|
|
240
241
|
match output:
|
|
241
242
|
case "sym":
|
jaclang/utils/test.py
CHANGED
|
@@ -107,6 +107,7 @@ class AstSyncTestMixin:
|
|
|
107
107
|
"jac_source",
|
|
108
108
|
"empty_token",
|
|
109
109
|
"ast_symbol_node",
|
|
110
|
+
"ast_symbol_stub_node",
|
|
110
111
|
"ast_impl_needing_node",
|
|
111
112
|
"ast_access_node",
|
|
112
113
|
"token_symbol",
|
|
@@ -124,7 +125,7 @@ class AstSyncTestMixin:
|
|
|
124
125
|
"arch_block_stmt",
|
|
125
126
|
"enum_block_stmt",
|
|
126
127
|
"code_block_stmt",
|
|
127
|
-
"
|
|
128
|
+
"name_atom",
|
|
128
129
|
"arch_spec",
|
|
129
130
|
"match_pattern",
|
|
130
131
|
]
|
jaclang/utils/treeprinter.py
CHANGED
|
@@ -96,17 +96,20 @@ def print_ast_tree(
|
|
|
96
96
|
else ""
|
|
97
97
|
)
|
|
98
98
|
sym_table_link = (
|
|
99
|
-
f"SymbolTable: {node.
|
|
100
|
-
if isinstance(node, AstSymbolNode) and node.
|
|
99
|
+
f"SymbolTable: {node.type_sym_tab.name}"
|
|
100
|
+
if isinstance(node, AstSymbolNode) and node.type_sym_tab
|
|
101
101
|
else "SymbolTable: None" if isinstance(node, AstSymbolNode) else ""
|
|
102
102
|
)
|
|
103
103
|
|
|
104
104
|
if isinstance(node, Token) and isinstance(node, AstSymbolNode):
|
|
105
|
-
out =
|
|
105
|
+
out = (
|
|
106
|
+
f"{node.__class__.__name__} - {node.value} - "
|
|
107
|
+
f"Type: {node.sym_type}, {access} {sym_table_link}"
|
|
108
|
+
)
|
|
106
109
|
if settings.ast_symbol_info_detailed:
|
|
107
110
|
symbol = (
|
|
108
|
-
node.
|
|
109
|
-
if node.
|
|
111
|
+
node.sym.sym_dotted_name
|
|
112
|
+
if node.sym
|
|
110
113
|
else "<No Symbol is associated with this node>"
|
|
111
114
|
)
|
|
112
115
|
out += f" SymbolPath: {symbol}"
|
|
@@ -114,11 +117,14 @@ def print_ast_tree(
|
|
|
114
117
|
elif isinstance(node, Token):
|
|
115
118
|
return f"{node.__class__.__name__} - {node.value}, {access}"
|
|
116
119
|
elif isinstance(node, AstSymbolNode):
|
|
117
|
-
out =
|
|
120
|
+
out = (
|
|
121
|
+
f"{node.__class__.__name__} - {node.sym_name} - "
|
|
122
|
+
f"Type: {node.sym_type}, {access} {sym_table_link}"
|
|
123
|
+
)
|
|
118
124
|
if settings.ast_symbol_info_detailed:
|
|
119
125
|
symbol = (
|
|
120
|
-
node.
|
|
121
|
-
if node.
|
|
126
|
+
node.sym.sym_dotted_name
|
|
127
|
+
if node.sym
|
|
122
128
|
else "<No Symbol is associated with this node>"
|
|
123
129
|
)
|
|
124
130
|
out += f" SymbolPath: {symbol}"
|
|
@@ -259,6 +265,14 @@ def _build_symbol_tree_common(
|
|
|
259
265
|
)
|
|
260
266
|
for n in sym.defn
|
|
261
267
|
]
|
|
268
|
+
uses = SymbolTree(node_name="uses", parent=symbol_node)
|
|
269
|
+
[
|
|
270
|
+
SymbolTree(
|
|
271
|
+
node_name=f"line {n.loc.first_line}, col {n.loc.col_start}",
|
|
272
|
+
parent=uses,
|
|
273
|
+
)
|
|
274
|
+
for n in sym.uses
|
|
275
|
+
]
|
|
262
276
|
|
|
263
277
|
for k in node.kid:
|
|
264
278
|
_build_symbol_tree_common(k, children)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.5
|
|
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,33 +2,33 @@ 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=8CbN_oqMhZ71AJhgA9J0Q551GMO3ey273dgaFPckLyI,13582
|
|
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=JA3L1ran0PlZI5Pcj2CIrFgrZGRNFHHC5kRh1QYgYlY,3146
|
|
9
|
-
jaclang/compiler/absyntree.py,sha256=
|
|
10
|
-
jaclang/compiler/codeloc.py,sha256=
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=Ptx-Hk7YKALDCZ74F89iatUsrjCEggtmbhBhJVJW0J0,129827
|
|
10
|
+
jaclang/compiler/codeloc.py,sha256=YhJcHjhMCOT6mV1qLehwriuFgW0H2-ntq68k_r8yBs4,2800
|
|
11
11
|
jaclang/compiler/compile.py,sha256=0d8p4i2LXg2RCu1XfWx_Jq_dx7pK2Zn2VIj-apvX_nI,3389
|
|
12
|
-
jaclang/compiler/constant.py,sha256=
|
|
13
|
-
jaclang/compiler/jac.lark,sha256=
|
|
14
|
-
jaclang/compiler/parser.py,sha256=
|
|
12
|
+
jaclang/compiler/constant.py,sha256=3guFRTTZ5ZrUORnyyrFfOIVhw0D7cvFUJDgmhNVsHIk,6599
|
|
13
|
+
jaclang/compiler/jac.lark,sha256=Xc7isRTi0RyegGT4nsmXAlzBA-G_3tFKt_Gv4cKoCTw,17157
|
|
14
|
+
jaclang/compiler/parser.py,sha256=WER6b19gOJgQou_gIbgK0Yp7Sc-Titi7gHPcQ3jGPNE,140004
|
|
15
15
|
jaclang/compiler/passes/__init__.py,sha256=0Tw0d130ZjzA05jVcny9cf5NfLjlaM70PKqFnY4zqn4,69
|
|
16
16
|
jaclang/compiler/passes/ir_pass.py,sha256=gh1Zd8ouu79FoxerW1sMxktmfeC9gHyp4H_MoAviYP8,5504
|
|
17
17
|
jaclang/compiler/passes/main/__init__.py,sha256=YSWVNkgnJKF32LpJwX__FwvYrpTSoxFqvnw410WrhkA,947
|
|
18
|
-
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=
|
|
19
|
-
jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=
|
|
20
|
-
jaclang/compiler/passes/main/def_use_pass.py,sha256=
|
|
21
|
-
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=
|
|
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=
|
|
18
|
+
jaclang/compiler/passes/main/access_modifier_pass.py,sha256=M9YVJwQ4ofLzVDV_MGZmanlfRLkdLjuybAeLUz9dCwo,5093
|
|
19
|
+
jaclang/compiler/passes/main/def_impl_match_pass.py,sha256=AXVOjBUBK8fs9SNw9RI_hmViqxlo-_g_s1N_h0yaOms,4507
|
|
20
|
+
jaclang/compiler/passes/main/def_use_pass.py,sha256=yeHbzcL0BsPtNkU8dO49m9MRlPAaNw3b6kBri5sBJn4,10054
|
|
21
|
+
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=wCn_fCAqZ4EW_DfoPIwmFH9FdNJS4pQLdlMlqr61_nU,17288
|
|
22
|
+
jaclang/compiler/passes/main/import_pass.py,sha256=18Lf8oC66Q2TmpKPjk-tY2a9kUtbssG_z4VU8RZLD_0,10374
|
|
23
|
+
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=b0LHAeJbyZXDyqBD38oenar_HuR8urZGlW9SLaNYO2E,139978
|
|
24
|
+
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=UJyoSpz_QHN0yX7RIubVQ-GjQxcVSkyueDxlwK6Qv-w,93127
|
|
25
25
|
jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
|
|
26
|
-
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=
|
|
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
|
|
28
|
-
jaclang/compiler/passes/main/registry_pass.py,sha256=
|
|
28
|
+
jaclang/compiler/passes/main/registry_pass.py,sha256=yc5ua5iyYTGizJewhP-AcXKvDZ0ilzy9hH1MIQzsy_0,4573
|
|
29
29
|
jaclang/compiler/passes/main/schedules.py,sha256=cu3-AIckvbKGe3C-DbtDwwAdvnX25CdDP6j9QLps9Kg,1298
|
|
30
30
|
jaclang/compiler/passes/main/sub_node_tab_pass.py,sha256=fGgK0CBWsuD6BS4BsLwXPl1b5UC2N2YEOGa6jNMu8N8,1332
|
|
31
|
-
jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=
|
|
31
|
+
jaclang/compiler/passes/main/sym_tab_build_pass.py,sha256=kvhQKdwyU862b7aYSK6IrFx5KxhRzD8j-tQ5spC3Y5s,40436
|
|
32
32
|
jaclang/compiler/passes/main/tests/__init__.py,sha256=UBAATLUEH3yuBN4LYKnXXV79kokRc4XB-rX12qfu0ds,28
|
|
33
33
|
jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl/getme.impl.jac,sha256=PUQSEKl0ZCjwhgU23o6qX8wEmnqvT7MSoFn8TVBlFpc,31
|
|
34
34
|
jaclang/compiler/passes/main/tests/fixtures/autoimpl.impl.jac,sha256=Br7R3fHBl5hZTfwelSlIvAzca7rb9v1bAIpeU1NnFmg,28
|
|
@@ -51,8 +51,8 @@ jaclang/compiler/passes/main/tests/fixtures/incautoimpl.jac,sha256=WX54UE-AUAfnj
|
|
|
51
51
|
jaclang/compiler/passes/main/tests/fixtures/multi_def_err.jac,sha256=BxgmNUdz76gKLi6PXnLZE9rartodMgch5ydpGrd25Ec,87
|
|
52
52
|
jaclang/compiler/passes/main/tests/fixtures/registry.jac,sha256=1G6amtU1zIFCgq09v7xTp9zZ5sw5IbXHfYVlOo-drPg,993
|
|
53
53
|
jaclang/compiler/passes/main/tests/fixtures/type_info.jac,sha256=64Im2L-R3YF8DEuTt29QE6mJI5PnFe3PiwcDLKa8gOE,661
|
|
54
|
-
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256
|
|
55
|
-
jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=
|
|
54
|
+
jaclang/compiler/passes/main/tests/test_decl_def_match_pass.py,sha256=zWF2l93RjyG0AWyDXdXsMlPWYOhX46d699YqvIETRGY,1836
|
|
55
|
+
jaclang/compiler/passes/main/tests/test_def_use_pass.py,sha256=0ieyoeiDSK2m3dmVN00oJK2TdJhxWwxA1lnxT95wz0A,843
|
|
56
56
|
jaclang/compiler/passes/main/tests/test_import_pass.py,sha256=qHz3IHJmFmTKpP_stU-Nhs9-1spR_04KddUSWdD5bl4,2073
|
|
57
57
|
jaclang/compiler/passes/main/tests/test_pyast_build_pass.py,sha256=LIT4TP-nhtftRtY5rNySRQlim-dWMSlkfUvkhZTk4pc,1383
|
|
58
58
|
jaclang/compiler/passes/main/tests/test_pyast_gen_pass.py,sha256=fNL_FS26AQGlRCvwWfl-Qyt7iW2_A99GIHOAnnkpw9A,4731
|
|
@@ -62,14 +62,14 @@ jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=I8m2SM2Z-OJkRG3C
|
|
|
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=ER2GXi_B0qRD31p224yAI9b3PZeSRLAXkpfFa1oq1C4,3440
|
|
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
|
-
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=
|
|
68
|
+
jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=yqq2OOSs2tlDKUnPe0GS3NAZh8F5fquA5ZTYw44QX08,87356
|
|
69
69
|
jaclang/compiler/passes/tool/schedules.py,sha256=kmbsCazAMizGAdQuZpFky5BPlYlMXqNw7wOUzdi_wBo,432
|
|
70
70
|
jaclang/compiler/passes/tool/tests/__init__.py,sha256=AeOaZjA1rf6VAr0JqIit6jlcmOzW7pxGr4U1fOwgK_Y,24
|
|
71
|
-
jaclang/compiler/passes/tool/tests/fixtures/corelib.jac,sha256=
|
|
72
|
-
jaclang/compiler/passes/tool/tests/fixtures/corelib_fmt.jac,sha256=
|
|
71
|
+
jaclang/compiler/passes/tool/tests/fixtures/corelib.jac,sha256=fNJJWnT_MiyYuN0exec1JTAkh4VKkAcEPFtFYLw3JKk,12712
|
|
72
|
+
jaclang/compiler/passes/tool/tests/fixtures/corelib_fmt.jac,sha256=fNJJWnT_MiyYuN0exec1JTAkh4VKkAcEPFtFYLw3JKk,12712
|
|
73
73
|
jaclang/compiler/passes/tool/tests/fixtures/doc_string.jac,sha256=hXD5bidK3sCGlJwTxy5Tka568hVxzqY6KL9y_z19CQo,217
|
|
74
74
|
jaclang/compiler/passes/tool/tests/fixtures/genai/essay_review.jac,sha256=VIXnIeimrkxF1T0pzE82eA8q9uUao7UXC_tkypn6l08,1783
|
|
75
75
|
jaclang/compiler/passes/tool/tests/fixtures/genai/expert_answer.jac,sha256=euhNL6oYlRnt0uLDar8fz7bvoiqf55b4Kq-gGBrb7cw,684
|
|
@@ -101,10 +101,11 @@ jaclang/compiler/passes/tool/tests/fixtures/simple_walk_fmt.jac,sha256=6jwYKXxJ1
|
|
|
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
103
|
jaclang/compiler/passes/tool/tests/test_unparse_validate.py,sha256=sIBDl35Cns6vv200GsKyLBbIggKKV2tDy4gq_J8zf6E,2768
|
|
104
|
-
jaclang/compiler/passes/transform.py,sha256=
|
|
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=DbTYKwQ2K-3JXS_RybLyvqDz_381Li8JfFKNeEQhbRY,26324
|
|
107
|
-
jaclang/compiler/
|
|
107
|
+
jaclang/compiler/semtable.py,sha256=tW0vY1N377w_WgKalqXe2VR8FJDwd9CpI6jDJi1jhEU,4152
|
|
108
|
+
jaclang/compiler/symtable.py,sha256=8q9Zxp4B-VPkLEulnyyNnUNowg1OTHeb1_8WJmsN4CI,6387
|
|
108
109
|
jaclang/compiler/tests/__init__.py,sha256=qiXa5UNRBanGOcplFKTT9a_9GEyiv7goq1OzuCjDCFE,27
|
|
109
110
|
jaclang/compiler/tests/fixtures/__init__.py,sha256=udQ0T6rajpW_nMiYKJNckqP8izZ-pH3P4PNTJEln2NU,36
|
|
110
111
|
jaclang/compiler/tests/fixtures/activity.py,sha256=fSvxYDKufsPeQIrbuh031zHw_hdbRv5iK9mS7dD8E54,263
|
|
@@ -115,11 +116,13 @@ jaclang/compiler/tests/fixtures/mod_doc_test.jac,sha256=aFZpjn7V5lvCHp0lPoGXtdkc
|
|
|
115
116
|
jaclang/compiler/tests/fixtures/staticcheck.jac,sha256=t849--dTkSSjCJX1OiMV-lgao_hIDSKwKVs-aS6IwK8,342
|
|
116
117
|
jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uhulQSDGQ3o6sY,82
|
|
117
118
|
jaclang/compiler/tests/test_importer.py,sha256=JNmte5FsHhnng9jzw7N5BenflAFCasuhezN1sytDVyg,1739
|
|
118
|
-
jaclang/compiler/tests/test_parser.py,sha256=
|
|
119
|
+
jaclang/compiler/tests/test_parser.py,sha256=Sj9Kz1FghESaPpyx_kEvScs4xvz-vgEdH8yyQJ0iB7M,4820
|
|
119
120
|
jaclang/core/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
|
|
120
|
-
jaclang/core/aott.py,sha256=
|
|
121
|
-
jaclang/core/
|
|
122
|
-
jaclang/core/
|
|
121
|
+
jaclang/core/aott.py,sha256=mAGsIKcY6p9nR7Alyswv1lDyV326WJhUtAGUmbwDphs,11298
|
|
122
|
+
jaclang/core/architype.py,sha256=qBH0W-ALxmK6DALc4_S7gx-3R7C_6o-PGKb3f4RbWbE,16781
|
|
123
|
+
jaclang/core/constructs.py,sha256=ogWc95DEZxQWoxqsfbRrcmt9ldGDqW7zQVu3DWuIAKs,848
|
|
124
|
+
jaclang/core/context.py,sha256=AxGsra9EqokVdOhwIxR9RuAcnm0HmobUnMBezUBY1_s,4774
|
|
125
|
+
jaclang/core/importer.py,sha256=63WPtpbzyGX3tI4flxXWT4tnrLmxaYZQNLZLjr8XOck,6330
|
|
123
126
|
jaclang/core/llms/__init__.py,sha256=hxuxduH6ahhkXgJ9eUkhfn8LCS1KTz1ESuYgtspu_c0,371
|
|
124
127
|
jaclang/core/llms/anthropic.py,sha256=numnoRVzi6ZjOMEP7UvMDsM_NnNfpqv4jeRfpSb79c4,3233
|
|
125
128
|
jaclang/core/llms/base.py,sha256=_qOv8G5jH2dc4OKUBDKDLx9M6Mv5kFUu5rj5dI625vU,6076
|
|
@@ -129,15 +132,16 @@ jaclang/core/llms/ollama.py,sha256=eJ_Jy7MNy33gR3zuSwcuGaWUedvY_Qy5A08H7kqLvFE,2
|
|
|
129
132
|
jaclang/core/llms/openai.py,sha256=01xY6l23_y4lX0t8ZEHiMwEBL7Govyf7fPQ2k4zdAKI,2219
|
|
130
133
|
jaclang/core/llms/togetherai.py,sha256=45lZHKtG4B7tyjI1s_7Pu39VXUaC5n9EAMajfGxHZb8,2164
|
|
131
134
|
jaclang/core/llms/utils.py,sha256=mTpROnh4qS8fE26TkcotSt-mAqWoSeEeRBOu0SgoPmA,219
|
|
132
|
-
jaclang/core/
|
|
133
|
-
jaclang/core/
|
|
135
|
+
jaclang/core/memory.py,sha256=7QukfL6wDBXrdpRn01yu4RMNkmIMNqFiKrI0zfpGSy4,2947
|
|
136
|
+
jaclang/core/test.py,sha256=HRCl3cf0uPTe58Kcx_sBUb6ow8J53rnmpFOhA7g9oAA,2851
|
|
137
|
+
jaclang/core/utils.py,sha256=uzEsRSuNSMMo7dlvCozGv0TnpUmHEjGNzUTZt1Df2gQ,7741
|
|
134
138
|
jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
|
|
135
|
-
jaclang/langserve/engine.py,sha256=
|
|
139
|
+
jaclang/langserve/engine.py,sha256=w7Is2JTFoJrFEby58mR14UWkKfA1-WJwaabZgxFfHPQ,13686
|
|
136
140
|
jaclang/langserve/server.py,sha256=s91jycYI4lHqFBOel3VV4ODmiO3abvX3UjyfM0hvWBI,5132
|
|
137
141
|
jaclang/langserve/tests/__init__.py,sha256=iDM47k6c3vahaWhwxpbkdEOshbmX-Zl5x669VONjS2I,23
|
|
138
142
|
jaclang/langserve/tests/defaults.py,sha256=8UWHuCHY-WatPcWFhyX9-4KLuJgODTlLNj0wNnKomIM,7608
|
|
139
|
-
jaclang/langserve/tests/fixtures/circle.jac,sha256=
|
|
140
|
-
jaclang/langserve/tests/fixtures/circle_err.jac,sha256=
|
|
143
|
+
jaclang/langserve/tests/fixtures/circle.jac,sha256=AWzRxTBjvQwoLSOakjn0kKXWqKvDaUYGc1zmBk1Nd5c,1770
|
|
144
|
+
jaclang/langserve/tests/fixtures/circle_err.jac,sha256=T22UiWpKJy6IhS-y0DrrZJMz95-8SAZnRAQUmT_kxO4,1732
|
|
141
145
|
jaclang/langserve/tests/fixtures/circle_pure.impl.jac,sha256=rsXatY9a-wZONRPJ6VOuw7Bj9R_CrJO_TEwAVXj1PjU,702
|
|
142
146
|
jaclang/langserve/tests/fixtures/circle_pure.jac,sha256=62j4v1LbWIfGfz_-tR7GDWNmEFqhdXhkDRC68Jc5fUs,624
|
|
143
147
|
jaclang/langserve/tests/fixtures/circle_pure_err.impl.jac,sha256=rsXatY9a-wZONRPJ6VOuw7Bj9R_CrJO_TEwAVXj1PjU,702
|
|
@@ -149,13 +153,13 @@ jaclang/langserve/tests/pylsp_jsonrpc/endpoint.py,sha256=TxDpWUd-8AGJwdRQN_iiCXY
|
|
|
149
153
|
jaclang/langserve/tests/pylsp_jsonrpc/exceptions.py,sha256=NGHeFQawZcjoLUcgDmY3bF7BqZR83g7TmdKyzCmRaKM,2836
|
|
150
154
|
jaclang/langserve/tests/pylsp_jsonrpc/streams.py,sha256=R80_FvICIkrbdGmNtlemWYaxrr7-XldPgLaASnyv0W8,3332
|
|
151
155
|
jaclang/langserve/tests/session.py,sha256=3pIRoQjZnsnUWIYnO2SpK7c1PAiHMCFrrStNK2tawRM,9572
|
|
152
|
-
jaclang/langserve/tests/test_server.py,sha256=
|
|
153
|
-
jaclang/langserve/utils.py,sha256=
|
|
156
|
+
jaclang/langserve/tests/test_server.py,sha256=go6GelWVsqNUZSnBKA0uJAsUyJFsW2Z7Kgwj_2ubZ_k,7652
|
|
157
|
+
jaclang/langserve/utils.py,sha256=znPQ-RQLo2qFHltLrXnLX1pHLhYJVxyVlvmYCNQIvCc,5707
|
|
154
158
|
jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
|
|
155
|
-
jaclang/plugin/builtin.py,sha256=
|
|
156
|
-
jaclang/plugin/default.py,sha256=
|
|
157
|
-
jaclang/plugin/feature.py,sha256=
|
|
158
|
-
jaclang/plugin/spec.py,sha256=
|
|
159
|
+
jaclang/plugin/builtin.py,sha256=MEMPUnj_rlwcCNmUkfH5S8iazMnQ6fpp6tls4fh5z7k,1188
|
|
160
|
+
jaclang/plugin/default.py,sha256=4tVHZe9m7SROLJZ0jJT55BcXPbdltepTYBnnSJ8m5a0,25775
|
|
161
|
+
jaclang/plugin/feature.py,sha256=vf_nvtOtJKQxxtUWjn2cwUfnzJeyES0OPIjy0hcpA_Q,9776
|
|
162
|
+
jaclang/plugin/spec.py,sha256=fBuL0iKX2s6scOfs6Ju-_VzS8z1ZLx_T5H_kOj_fQWg,8877
|
|
159
163
|
jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
|
|
160
164
|
jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
|
|
161
165
|
jaclang/plugin/tests/fixtures/impl_match_impl.jac,sha256=k1385r7Hdlq6mUKxEHa3VOKJUIWH08hYg2kErhbYwFM,31
|
|
@@ -163,8 +167,8 @@ jaclang/plugin/tests/fixtures/simple_node_connection.jac,sha256=KdbpACWtnj92TqQq
|
|
|
163
167
|
jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8ICBZEBZzHhqha0xQFFBK_DSI,624
|
|
164
168
|
jaclang/plugin/tests/test_features.py,sha256=p0N5inZn92Cj0eqslmDR0-q6pVG8hkcQfA6CuQcfP3Y,2352
|
|
165
169
|
jaclang/plugin/tests/test_jaseci.py,sha256=XcVL-FOZMTsjJEZqCa-rcYyEPl1dxdFFu9vhvm8kUaI,7956
|
|
166
|
-
jaclang/settings.py,sha256=
|
|
167
|
-
jaclang/tests/fixtures/abc.jac,sha256=
|
|
170
|
+
jaclang/settings.py,sha256=7rKy_kQkWjciwBoWHoJVYrK0nxLwaG54FFvFLOGGggk,3375
|
|
171
|
+
jaclang/tests/fixtures/abc.jac,sha256=AWzRxTBjvQwoLSOakjn0kKXWqKvDaUYGc1zmBk1Nd5c,1770
|
|
168
172
|
jaclang/tests/fixtures/access_checker.jac,sha256=6Inm14cZsyMfezFRs2zfnQEZSE_JRxVvytcZbox7BNw,375
|
|
169
173
|
jaclang/tests/fixtures/access_modifier.jac,sha256=bxiPlbqm4zPXdMIeTR0-LhjO6c-LS7fW_fGuIA7oKWI,945
|
|
170
174
|
jaclang/tests/fixtures/aott_raise.jac,sha256=11c3V3POK6ir1TDnjRWBTZFu9gOKYvtZvRWs325OSCE,749
|
|
@@ -172,7 +176,7 @@ jaclang/tests/fixtures/arithmetic_bug.jac,sha256=iiO3ZwTi7R1U6-flV4tGbxDHXsw8Gna
|
|
|
172
176
|
jaclang/tests/fixtures/assign_compr.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
|
|
173
177
|
jaclang/tests/fixtures/assign_compr_dup.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
|
|
174
178
|
jaclang/tests/fixtures/builtin_dotgen.jac,sha256=HsAHVyN7HxhbICqe4GXV51cJlMe68WMleMmx9KeR8fU,1759
|
|
175
|
-
jaclang/tests/fixtures/byllmissue.jac,sha256=
|
|
179
|
+
jaclang/tests/fixtures/byllmissue.jac,sha256=A7V7nk0oqt0uR246sJ8DKBxMERn1cvHvE98pxJRVoRU,152
|
|
176
180
|
jaclang/tests/fixtures/chandra_bugs.jac,sha256=vcBjZ4P7S1PPUs-_0Stt779pus95RJTMs1x_-m0w7yY,282
|
|
177
181
|
jaclang/tests/fixtures/chandra_bugs2.jac,sha256=P9C7lVotfh-OoyAl1LDUqMPUaUmjrNrVO3nrBcxB_WQ,540
|
|
178
182
|
jaclang/tests/fixtures/circle_pysolo.py,sha256=TAJTCOjrUl80oDke5wl6ZyBJQsy37Hu6gYdqcO-tQlY,2477
|
|
@@ -191,6 +195,7 @@ jaclang/tests/fixtures/disconn.jac,sha256=gRbNh6R6t-cTdB6lT4M7HW7cdGoYoGV5Bnp3Nh
|
|
|
191
195
|
jaclang/tests/fixtures/edge_node_walk.jac,sha256=OOIMT7lrwZT3rVF-niRWbUeifBL5fuu1D1TMYXPRlfk,961
|
|
192
196
|
jaclang/tests/fixtures/edge_ops.jac,sha256=PYw_ChRnYReVSev1PjUmbtvHUj-ZWfZax2KOkaWC1pc,941
|
|
193
197
|
jaclang/tests/fixtures/edges_walk.jac,sha256=3X7LH0O9EinQnGvSu0BKMZptI10vVXpry_RdV2lTFnE,800
|
|
198
|
+
jaclang/tests/fixtures/edgetypetest.jac,sha256=dlFMlG1-GFG6BmgoJriShWHQPu54NVGCmN0_9jtsy9Q,143
|
|
194
199
|
jaclang/tests/fixtures/enum_inside_archtype.jac,sha256=EiuL9szE0ISfeczoVcnZyw0eK1n6vc6_koDf0cHgoh4,236
|
|
195
200
|
jaclang/tests/fixtures/err.jac,sha256=0MbNsaJaVp7cpL-nvG2SOCnDmZbfcpjOaF7VIU_2ggU,49
|
|
196
201
|
jaclang/tests/fixtures/err2.jac,sha256=x8h69NTVMGJa_UicY-CZblLMdeH09myTeiYqNFamiK0,50
|
|
@@ -207,12 +212,14 @@ jaclang/tests/fixtures/ignore.jac,sha256=_2ZzV5VV_5F7i5cHUxOkQgsKtxnUGKlBxDHeGGL
|
|
|
207
212
|
jaclang/tests/fixtures/ignore_dup.jac,sha256=_2ZzV5VV_5F7i5cHUxOkQgsKtxnUGKlBxDHeGGLoK3g,673
|
|
208
213
|
jaclang/tests/fixtures/impl_grab.impl.jac,sha256=Ai4k28dz-VNcP1jDup0m5s7YpPhqUh77KTyvHwHs_po,59
|
|
209
214
|
jaclang/tests/fixtures/impl_grab.jac,sha256=IwYqYVvOHc820eekiXi5D7XJ9TyYaWydtWp_GYszQ5Q,47
|
|
215
|
+
jaclang/tests/fixtures/impl_match_confused.impl.jac,sha256=kGLTk4t5ABnlMZe5WRGg8bJjpHRqBwa5W_0d1yRHfO8,42
|
|
216
|
+
jaclang/tests/fixtures/impl_match_confused.jac,sha256=m8HxEQrI8IM82AZXaK5_rfhrHf2dvrPafjDMYyQI9EU,106
|
|
210
217
|
jaclang/tests/fixtures/inherit_check.jac,sha256=FQlbCavN4ryt3mmD6ei1MIt1jMgZ8_NcVkT62233C0s,423
|
|
211
218
|
jaclang/tests/fixtures/jacsamp.jac,sha256=VUHUn-RvHzTA4v0KNIFuciocqAHsgQp9tfsEvh5WHlE,96
|
|
212
219
|
jaclang/tests/fixtures/jp_importer.jac,sha256=Mfn62rwYk8CANIkCoMf5UFt4SKl042jaU0CHnj-Soiw,414
|
|
213
220
|
jaclang/tests/fixtures/lambda.jac,sha256=nU4HbPrBdYe6NegJq4LueequaiLCe3KWyTAbL__ibG0,113
|
|
214
221
|
jaclang/tests/fixtures/math_question.jpg,sha256=YYLzFuCZRmhEcyTNKy-HzOaka4ZSswHExA3a6UMD18E,152545
|
|
215
|
-
jaclang/tests/fixtures/maxfail_run_test.jac,sha256=
|
|
222
|
+
jaclang/tests/fixtures/maxfail_run_test.jac,sha256=JSGAM4wXnu5kP5aczcHNDlnn017yZpinRApetQSPhtE,196
|
|
216
223
|
jaclang/tests/fixtures/mtest.impl.jac,sha256=wYsT4feH2JgxxgN217dgbDWooSmD8HBSlzUwJ4jAa8g,76
|
|
217
224
|
jaclang/tests/fixtures/mtest.jac,sha256=i7aQpJuUw4YMXgJOvGn_lRx-TruJdqBClioPKGUd4mw,67
|
|
218
225
|
jaclang/tests/fixtures/needs_import.jac,sha256=hJab0QWdoTLuNaNhtY6zjzyGGUouRyT9uQknhP-lXXQ,315
|
|
@@ -229,7 +236,7 @@ jaclang/tests/fixtures/pyfunc_3.py,sha256=BDmPJBV3A-ExlbvfcZqRcZyY9zDMVGZ4PYzbFV
|
|
|
229
236
|
jaclang/tests/fixtures/random_check.jac,sha256=o8MxWK9_QjxQh9nxBQKYUdsaxIPxlzUJFpxPr-lU588,1523
|
|
230
237
|
jaclang/tests/fixtures/raw_byte_string.jac,sha256=y5FA0rtLC5do8vqXfCxCF1TP7l8L20nI56WRFdu8x9k,337
|
|
231
238
|
jaclang/tests/fixtures/registry.jac,sha256=jelEOPsn6iTWZ4zKz4DrCOhPvAwSp-R8ztNImIIREFE,855
|
|
232
|
-
jaclang/tests/fixtures/run_test.jac,sha256=
|
|
239
|
+
jaclang/tests/fixtures/run_test.jac,sha256=3FN5EGiauO_7sRyNVeDttgb1ubDX0bu0QmikqfeFQv0,201
|
|
233
240
|
jaclang/tests/fixtures/semstr.jac,sha256=9dP6zA0jlkIFNTuPNylxpAm186e981vLEPQFDOEpP4c,946
|
|
234
241
|
jaclang/tests/fixtures/simple_archs.jac,sha256=582d31dUHFWqC2dDFPhKweLHHw2qgwJMbM9qCTAy7e4,361
|
|
235
242
|
jaclang/tests/fixtures/slice_vals.jac,sha256=BN8QxpLa8z834VMjLr1Nfv3rAWmqmk3r7FN7gedydAc,232
|
|
@@ -246,19 +253,20 @@ jaclang/tests/fixtures/with_llm_lower.jac,sha256=S3a8luL38neLReoxNzs-nLeN36oys05
|
|
|
246
253
|
jaclang/tests/fixtures/with_llm_method.jac,sha256=l76E50hIygLwkiIpjf3iYGv97C3yZlUABE2D5GnqQ44,1420
|
|
247
254
|
jaclang/tests/fixtures/with_llm_type.jac,sha256=LKotFGtBl9mzo08SbTkzBWa3rGWt4AuzgianHFkAZvU,1778
|
|
248
255
|
jaclang/tests/fixtures/with_llm_vision.jac,sha256=xp2hteAzmu3ij9T3uI_FJiuvQtSuaivtJ_XWmqb0f1I,679
|
|
249
|
-
jaclang/tests/
|
|
250
|
-
jaclang/tests/
|
|
256
|
+
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
257
|
+
jaclang/tests/test_cli.py,sha256=tnqdx8W5jTlsDJYR3713EikJqCbcgWEknEwuRHByvWk,8703
|
|
258
|
+
jaclang/tests/test_language.py,sha256=aaODp7A6skFAuaDlLH_XZhkI9qEXh-DKPEAIO_AJ_NM,38610
|
|
251
259
|
jaclang/tests/test_man_code.py,sha256=Kq93zg3hEfiouvpWvmfCgR6lDT5RKDp28k5ZaWe1Xeg,4519
|
|
252
|
-
jaclang/tests/test_reference.py,sha256=
|
|
260
|
+
jaclang/tests/test_reference.py,sha256=FoZQS-U9teiag8mAmX5X6ak4fuCOv00mvOyqJ44Zkc8,3379
|
|
253
261
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
254
262
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
255
263
|
jaclang/utils/helpers.py,sha256=v-jQ-SDzGLrrLXKxoL1PaCguJqcV-X1UlwjWSL3GNAI,6142
|
|
256
|
-
jaclang/utils/lang_tools.py,sha256=
|
|
264
|
+
jaclang/utils/lang_tools.py,sha256=5R-Pe_ylXqWEPXrUGsQ3Vy7rrItf_mbyK19ptFSKiJI,10020
|
|
257
265
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
258
|
-
jaclang/utils/test.py,sha256=
|
|
266
|
+
jaclang/utils/test.py,sha256=Ll3H2l8U2OVQGHAkohsryDXIKSJHJseQSrMHS8JQTiw,5414
|
|
259
267
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
260
268
|
jaclang/utils/tests/test_lang_tools.py,sha256=hFQzkzdmJIhP99xqjR5z7bqkefMLmE6kwldXYrfK--E,4831
|
|
261
|
-
jaclang/utils/treeprinter.py,sha256=
|
|
269
|
+
jaclang/utils/treeprinter.py,sha256=7YPWmtU-gHPN37m9eXqVSqjTy7X_xmUVmBaGcn3p5SM,12663
|
|
262
270
|
jaclang/vendor/__init__.py,sha256=tEcp2kl3hMvF2d6X6WlJSAGuAMYOVCKCstXuPMQSR4Q,265
|
|
263
271
|
jaclang/vendor/attr/__init__.py,sha256=WlXJN6ICB0Y_HZ0lmuTUgia0kuSdn2p67d4N6cYxNZM,3307
|
|
264
272
|
jaclang/vendor/attr/__init__.pyi,sha256=u08EujYHy_rSyebNn-I9Xv2S_cXmtA9xWGc0cBsyl18,16976
|
|
@@ -1481,7 +1489,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1481
1489
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1482
1490
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1483
1491
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1484
|
-
jaclang-0.7.
|
|
1485
|
-
jaclang-0.7.
|
|
1486
|
-
jaclang-0.7.
|
|
1487
|
-
jaclang-0.7.
|
|
1492
|
+
jaclang-0.7.5.dist-info/METADATA,sha256=o9TJE2sIF_nWPdTxIdxLvyWCYV03KSaSMxhknWYKKoI,4807
|
|
1493
|
+
jaclang-0.7.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1494
|
+
jaclang-0.7.5.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1495
|
+
jaclang-0.7.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|