jaclang 0.7.30__py3-none-any.whl → 0.7.32__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 +419 -3
- jaclang/compiler/absyntree.py +3 -3
- jaclang/compiler/constant.py +4 -4
- jaclang/compiler/jac.lark +226 -175
- jaclang/compiler/parser.py +1772 -2422
- jaclang/compiler/passes/main/fuse_typeinfo_pass.py +2 -2
- jaclang/compiler/passes/main/import_pass.py +2 -1
- jaclang/compiler/passes/main/inheritance_pass.py +20 -1
- jaclang/compiler/passes/main/pyast_gen_pass.py +565 -723
- jaclang/compiler/passes/main/tests/test_type_check_pass.py +6 -3
- jaclang/compiler/tests/test_parser.py +13 -5
- jaclang/plugin/builtin.py +11 -0
- jaclang/plugin/default.py +64 -10
- jaclang/plugin/feature.py +14 -0
- jaclang/plugin/spec.py +16 -0
- jaclang/plugin/tests/fixtures/graph_purger.jac +2 -0
- jaclang/plugin/tests/fixtures/other_root_access.jac +1 -0
- jaclang/plugin/tests/fixtures/savable_object.jac +2 -0
- jaclang/plugin/tests/fixtures/traversing_save.jac +17 -0
- jaclang/plugin/tests/test_jaseci.py +34 -1
- jaclang/runtimelib/architype.py +9 -19
- jaclang/runtimelib/context.py +25 -9
- jaclang/settings.py +2 -0
- jaclang/tests/fixtures/base_class_complex_expr.jac +38 -0
- jaclang/tests/fixtures/create_dynamic_architype.jac +1 -1
- jaclang/tests/fixtures/nested_impls.jac +55 -0
- jaclang/tests/test_cli.py +21 -0
- jaclang/tests/test_language.py +27 -13
- jaclang/tests/test_reference.py +2 -2
- jaclang/utils/helpers.py +4 -3
- jaclang/utils/profiler.py +62 -0
- {jaclang-0.7.30.dist-info → jaclang-0.7.32.dist-info}/METADATA +1 -1
- {jaclang-0.7.30.dist-info → jaclang-0.7.32.dist-info}/RECORD +35 -31
- {jaclang-0.7.30.dist-info → jaclang-0.7.32.dist-info}/WHEEL +1 -1
- {jaclang-0.7.30.dist-info → jaclang-0.7.32.dist-info}/entry_points.txt +0 -0
jaclang/tests/test_language.py
CHANGED
|
@@ -11,7 +11,7 @@ from jaclang import jac_import
|
|
|
11
11
|
from jaclang.cli import cli
|
|
12
12
|
from jaclang.compiler.compile import jac_file_to_pass, jac_pass_to_pass, jac_str_to_pass
|
|
13
13
|
from jaclang.compiler.passes.main.schedules import py_code_gen_typed
|
|
14
|
-
from jaclang.runtimelib.context import
|
|
14
|
+
from jaclang.runtimelib.context import ExecutionContext
|
|
15
15
|
from jaclang.runtimelib.machine import JacMachine, JacProgram
|
|
16
16
|
from jaclang.utils.test import TestCase
|
|
17
17
|
|
|
@@ -21,7 +21,7 @@ class JacLanguageTests(TestCase):
|
|
|
21
21
|
|
|
22
22
|
def setUp(self) -> None:
|
|
23
23
|
"""Set up test."""
|
|
24
|
-
|
|
24
|
+
ExecutionContext.global_system_root().edges.clear()
|
|
25
25
|
JacMachine(self.fixture_abs_path("./")).attach_program(
|
|
26
26
|
JacProgram(mod_bundle=None, bytecode=None, sem_ir=None)
|
|
27
27
|
)
|
|
@@ -118,19 +118,19 @@ class JacLanguageTests(TestCase):
|
|
|
118
118
|
stdout_value = captured_output.getvalue()
|
|
119
119
|
|
|
120
120
|
expected_outputs = [
|
|
121
|
-
"+-- AtomTrailer - Type:
|
|
122
|
-
" +-- Name - arr - Type:
|
|
123
|
-
"
|
|
124
|
-
" +-- Token - [,",
|
|
121
|
+
"+-- AtomTrailer - Type: jaclang.JacList[builtins.int]",
|
|
122
|
+
" +-- Name - arr - Type: jaclang.JacList[jaclang.JacList[builtins.int]], SymbolTable: None",
|
|
123
|
+
"+-- IndexSlice - [IndexSlice] - Type: jaclang.JacList[jaclang.JacList[builtins.int]], SymbolTable: None",
|
|
124
|
+
" +-- Token - [, ",
|
|
125
125
|
" +-- Int - 1 - Type: Literal[1]?, SymbolTable: None",
|
|
126
|
-
" +-- Token - :,",
|
|
126
|
+
" +-- Token - :, ",
|
|
127
127
|
" +-- Int - 3 - Type: Literal[3]?, SymbolTable: None",
|
|
128
|
-
" +-- Token - ,,",
|
|
128
|
+
" +-- Token - ,, ",
|
|
129
129
|
" +-- Int - 1 - Type: Literal[1]?, SymbolTable: None",
|
|
130
|
-
" +-- Token - :,",
|
|
131
|
-
" +-- Token - :,",
|
|
130
|
+
" +-- Token - :, ",
|
|
131
|
+
" +-- Token - :, ",
|
|
132
132
|
" +-- Int - 2 - Type: Literal[2]?, SymbolTable: None",
|
|
133
|
-
" +-- Token - ],",
|
|
133
|
+
" +-- Token - ], ",
|
|
134
134
|
]
|
|
135
135
|
|
|
136
136
|
for expected in expected_outputs:
|
|
@@ -1033,11 +1033,11 @@ class JacLanguageTests(TestCase):
|
|
|
1033
1033
|
stdout_value,
|
|
1034
1034
|
)
|
|
1035
1035
|
self.assertIn(
|
|
1036
|
-
"Walkers in bar:\n - Walker: bar_walk",
|
|
1036
|
+
"Walkers in bar:\n - Walker: Walker\n - Walker: bar_walk",
|
|
1037
1037
|
stdout_value,
|
|
1038
1038
|
)
|
|
1039
1039
|
self.assertIn("Nodes in bar:\n - Node: Item", stdout_value)
|
|
1040
|
-
self.assertIn("Edges in bar:\n - Edge: Link", stdout_value)
|
|
1040
|
+
self.assertIn("Edges in bar:\n - Edge: Edge\n - Edge: Link", stdout_value)
|
|
1041
1041
|
self.assertIn("Item value: 0", stdout_value)
|
|
1042
1042
|
self.assertIn("Created 5 items.", stdout_value)
|
|
1043
1043
|
|
|
@@ -1247,3 +1247,17 @@ class JacLanguageTests(TestCase):
|
|
|
1247
1247
|
"walker exit\n",
|
|
1248
1248
|
captured_output.getvalue(),
|
|
1249
1249
|
)
|
|
1250
|
+
|
|
1251
|
+
def test_nested_impls(self) -> None:
|
|
1252
|
+
"""Test complex nested impls."""
|
|
1253
|
+
captured_output = io.StringIO()
|
|
1254
|
+
sys.stdout = captured_output
|
|
1255
|
+
jac_import("nested_impls", base_path=self.fixture_abs_path("./"))
|
|
1256
|
+
sys.stdout = sys.__stdout__
|
|
1257
|
+
stdout_value = captured_output.getvalue().split("\n")
|
|
1258
|
+
self.assertIn("Hello,from bar in kk", stdout_value[0])
|
|
1259
|
+
self.assertIn("Greeting: Hello, World!", stdout_value[1])
|
|
1260
|
+
self.assertIn("Repeated: Hello", stdout_value[2])
|
|
1261
|
+
self.assertIn("Hello, World!", stdout_value[3])
|
|
1262
|
+
self.assertIn("Last message:!", stdout_value[4])
|
|
1263
|
+
self.assertIn("Final message:!", stdout_value[5])
|
jaclang/tests/test_reference.py
CHANGED
|
@@ -7,7 +7,7 @@ from typing import Callable, Optional
|
|
|
7
7
|
|
|
8
8
|
import jaclang
|
|
9
9
|
from jaclang.compiler.compile import jac_file_to_pass
|
|
10
|
-
from jaclang.runtimelib.context import
|
|
10
|
+
from jaclang.runtimelib.context import ExecutionContext
|
|
11
11
|
from jaclang.utils.test import TestCase
|
|
12
12
|
|
|
13
13
|
|
|
@@ -52,7 +52,7 @@ class JacReferenceTests(TestCase):
|
|
|
52
52
|
"""Test file."""
|
|
53
53
|
|
|
54
54
|
def execute_and_capture_output(code: str | bytes, filename: str = "") -> str:
|
|
55
|
-
|
|
55
|
+
ExecutionContext.global_system_root().edges.clear()
|
|
56
56
|
f = io.StringIO()
|
|
57
57
|
with redirect_stdout(f):
|
|
58
58
|
exec(
|
jaclang/utils/helpers.py
CHANGED
|
@@ -73,13 +73,14 @@ def extract_headings(file_path: str) -> dict[str, tuple[int, int]]:
|
|
|
73
73
|
current_heading = None
|
|
74
74
|
start_line = 0
|
|
75
75
|
for idx, line in enumerate(lines, start=1):
|
|
76
|
-
|
|
76
|
+
line = line.strip().removesuffix(".")
|
|
77
|
+
if line.startswith("// [Heading]:"):
|
|
77
78
|
if current_heading is not None:
|
|
78
79
|
headings[current_heading] = (
|
|
79
80
|
start_line,
|
|
80
81
|
idx - 2,
|
|
81
82
|
) # Subtract 1 to get the correct end line
|
|
82
|
-
current_heading = line.
|
|
83
|
+
current_heading = line.removeprefix("// [Heading]:")
|
|
83
84
|
start_line = idx + 1
|
|
84
85
|
# Add the last heading
|
|
85
86
|
if current_heading is not None:
|
|
@@ -95,7 +96,7 @@ def auto_generate_refs() -> None:
|
|
|
95
96
|
result = extract_headings(file_path)
|
|
96
97
|
created_file_path = os.path.join(
|
|
97
98
|
os.path.split(os.path.dirname(__file__))[0],
|
|
98
|
-
"../support/jac-lang.org/docs/
|
|
99
|
+
"../support/jac-lang.org/docs/lang_ref/jac_ref.md",
|
|
99
100
|
)
|
|
100
101
|
destination_folder = os.path.join(
|
|
101
102
|
os.path.split(os.path.dirname(__file__))[0], "../examples/reference/"
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import time
|
|
2
|
+
from contextlib import contextmanager
|
|
3
|
+
from functools import wraps
|
|
4
|
+
from typing import Callable, Dict, Generator, ParamSpec, TypeVar
|
|
5
|
+
|
|
6
|
+
P = ParamSpec("P")
|
|
7
|
+
R = TypeVar("R")
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class CodeProfiler:
|
|
11
|
+
|
|
12
|
+
markers: Dict[str, float] = {}
|
|
13
|
+
|
|
14
|
+
@staticmethod
|
|
15
|
+
def time_function(func: Callable[P, R]) -> Callable[P, R]:
|
|
16
|
+
"""Measure and print the execution time of a function."""
|
|
17
|
+
|
|
18
|
+
@wraps(func)
|
|
19
|
+
def wrapper(*args: P.args, **kwargs: P.kwargs) -> R:
|
|
20
|
+
start_time = time.perf_counter()
|
|
21
|
+
result = func(*args, **kwargs)
|
|
22
|
+
end_time = time.perf_counter()
|
|
23
|
+
print(
|
|
24
|
+
f"Function '{func.__name__}' took {end_time - start_time:.6f} seconds"
|
|
25
|
+
)
|
|
26
|
+
return result
|
|
27
|
+
|
|
28
|
+
return wrapper
|
|
29
|
+
|
|
30
|
+
@staticmethod
|
|
31
|
+
def start_marker(marker_name: str) -> None:
|
|
32
|
+
"""Start a named marker to measure a specific section of code."""
|
|
33
|
+
if marker_name in CodeProfiler.markers:
|
|
34
|
+
print(f"Warning: Marker '{marker_name}' is already running.")
|
|
35
|
+
CodeProfiler.markers[marker_name] = time.perf_counter()
|
|
36
|
+
|
|
37
|
+
@staticmethod
|
|
38
|
+
def end_marker(marker_name: str) -> None:
|
|
39
|
+
"""End the named marker and print the time taken since it started."""
|
|
40
|
+
if marker_name not in CodeProfiler.markers:
|
|
41
|
+
print(f"Error: Marker '{marker_name}' does not exist.")
|
|
42
|
+
return
|
|
43
|
+
start_time = CodeProfiler.markers.pop(marker_name)
|
|
44
|
+
end_time = time.perf_counter()
|
|
45
|
+
print(f"Marker '{marker_name}' took {end_time - start_time:.6f} seconds")
|
|
46
|
+
|
|
47
|
+
@staticmethod
|
|
48
|
+
@contextmanager
|
|
49
|
+
def profile_section(section_name: str) -> Generator[None, None, None]:
|
|
50
|
+
"""
|
|
51
|
+
A context manager for profiling a block of code.
|
|
52
|
+
|
|
53
|
+
Usage:
|
|
54
|
+
with CodeProfiler.profile_section("My Block"):
|
|
55
|
+
# code to profile
|
|
56
|
+
"""
|
|
57
|
+
start_time = time.perf_counter()
|
|
58
|
+
try:
|
|
59
|
+
yield
|
|
60
|
+
finally:
|
|
61
|
+
end_time = time.perf_counter()
|
|
62
|
+
print(f"Section '{section_name}' took {end_time - start_time:.6f} seconds")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: jaclang
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.32
|
|
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
|
License: MIT
|
|
6
6
|
Keywords: jac,jaclang,jaseci,python,programming-language,machine-learning,artificial-intelligence
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
jaclang/__init__.py,sha256=
|
|
1
|
+
jaclang/__init__.py,sha256=bx1J_RA6dyXlj6jp7hSjTvbm_xO4MV7ZSW82mg0qxqs,13112
|
|
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
|
|
@@ -6,23 +6,23 @@ 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=QKNNJswgDdvn7qjvggio4BicJfCus1JCqyhsTGYN5sg,2724
|
|
9
|
-
jaclang/compiler/absyntree.py,sha256=
|
|
9
|
+
jaclang/compiler/absyntree.py,sha256=cf9-aiDtQQWhTmzcw0WmvCQYQQmmeMFlV9Zf_8NZWYw,141887
|
|
10
10
|
jaclang/compiler/codeloc.py,sha256=clz7ofOE0Rgf7eqco3zEO31mCbG3Skj9-rLooliBeik,2942
|
|
11
11
|
jaclang/compiler/compile.py,sha256=FD3jxK8zoxdpQrYRJvwO3CoPWjYL3bbW2WhPRzj3hz8,3796
|
|
12
|
-
jaclang/compiler/constant.py,sha256=
|
|
13
|
-
jaclang/compiler/jac.lark,sha256=
|
|
14
|
-
jaclang/compiler/parser.py,sha256=
|
|
12
|
+
jaclang/compiler/constant.py,sha256=4aS0haM9X7WI0mJmzsWuEecF1yWHadC1lOLGOOUyNY0,8994
|
|
13
|
+
jaclang/compiler/jac.lark,sha256=SzEc1Ae6Q8QUtBzW1R3OnPTQMpiQGrN-PE25TL_psAs,19848
|
|
14
|
+
jaclang/compiler/parser.py,sha256=3OG4H43kMCSufKoy4EBoIKiuEj5fFk7QOwqJb-lMJFU,121426
|
|
15
15
|
jaclang/compiler/passes/__init__.py,sha256=0Tw0d130ZjzA05jVcny9cf5NfLjlaM70PKqFnY4zqn4,69
|
|
16
16
|
jaclang/compiler/passes/ir_pass.py,sha256=CgtuBrVjfG7PgTCLNSjxgFffYR5naTC3tIjOjsXx5gk,5597
|
|
17
17
|
jaclang/compiler/passes/main/__init__.py,sha256=m5ukLwMcdoi85Ee80-A-zDLbg81z0ztT2IKhOCegNpE,973
|
|
18
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/inheritance_pass.py,sha256=
|
|
21
|
+
jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=bjxeE_90AFy9jN9VomOsoyVFIqO2Kp3UHAjPNF-APGA,26928
|
|
22
|
+
jaclang/compiler/passes/main/import_pass.py,sha256=ouOuVzA_wloNG_t3Ec9gTEu6JuPZtwXiL6Kgtoan6gc,23090
|
|
23
|
+
jaclang/compiler/passes/main/inheritance_pass.py,sha256=IDzfMSezJmNdBwN_dwguu1qYL8YzwBuNPFrk6HEkTco,5586
|
|
24
24
|
jaclang/compiler/passes/main/py_collect_dep_pass.py,sha256=TE4h6HLYRE5YdHZK9gtbPPaBJBLOg0g0xSlT_oPzwzY,2874
|
|
25
|
-
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=
|
|
25
|
+
jaclang/compiler/passes/main/pyast_gen_pass.py,sha256=jeBpx-vxo0_OODMm82iCF6Fl1xNgQKFa1gt63AWw8zY,133057
|
|
26
26
|
jaclang/compiler/passes/main/pyast_load_pass.py,sha256=VmlR1j0iY60nFF9DrWVwWrvpUDZpXamkfoyF7miqysA,94697
|
|
27
27
|
jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
|
|
28
28
|
jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=snbqUIPtPcD9ZKsItOlKGVnujoMGFwF8XNP0GvxS9AI,8628
|
|
@@ -73,7 +73,7 @@ jaclang/compiler/passes/main/tests/test_pybc_gen_pass.py,sha256=If8PE4exN5g9o1NR
|
|
|
73
73
|
jaclang/compiler/passes/main/tests/test_registry_pass.py,sha256=Oe2RD_s2ULqwha0FAkOGzMTlXYR7-pWIx5Na9Gt4rYQ,900
|
|
74
74
|
jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI9FNHTewI2r5HO19-JxNGK_NZ01E,821
|
|
75
75
|
jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
|
|
76
|
-
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=
|
|
76
|
+
jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=gsea5x4EWbtByJk3O5nZMNcBhjDpdFvsrxHU6iB3JVM,3226
|
|
77
77
|
jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=o908glXImFXOlKKTUyxp4rxsso0vJbduli5Rvbd3KXE,1017
|
|
78
78
|
jaclang/compiler/passes/main/type_check_pass.py,sha256=eDVvCO5I46ZUdCc86nZgfrIRi0-gL0KAlM_1RGEPnCY,4343
|
|
79
79
|
jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
|
|
@@ -139,7 +139,7 @@ jaclang/compiler/tests/fixtures/mod_doc_test.jac,sha256=aFZpjn7V5lvCHp0lPoGXtdkc
|
|
|
139
139
|
jaclang/compiler/tests/fixtures/staticcheck.jac,sha256=t849--dTkSSjCJX1OiMV-lgao_hIDSKwKVs-aS6IwK8,342
|
|
140
140
|
jaclang/compiler/tests/fixtures/stuff.jac,sha256=qOq6WOwhlprMmJpiqQudgqnr4qTd9uhulQSDGQ3o6sY,82
|
|
141
141
|
jaclang/compiler/tests/test_importer.py,sha256=BKRZ0-n459LaXpJOJt73NHcYkYFAFfFalYz3TF4VgD8,3764
|
|
142
|
-
jaclang/compiler/tests/test_parser.py,sha256=
|
|
142
|
+
jaclang/compiler/tests/test_parser.py,sha256=poWNJY3f3DRLiAfd4Vh5ZLP1NT7Fqp-oa_rBQInynHY,5256
|
|
143
143
|
jaclang/langserve/__init__.py,sha256=3qbnivBBcLZCfmDYRMIeKkG08Lx7XQsJJg-qG8TU8yc,51
|
|
144
144
|
jaclang/langserve/engine.py,sha256=2U6sSCXLedVZhbUGFMadSecKUmW23LAk8S99vN7tsyc,20911
|
|
145
145
|
jaclang/langserve/sem_manager.py,sha256=d5QzT9WVYarZfTg1sUF_pTfNMYb65HLz3vX839b5Jeo,14918
|
|
@@ -168,32 +168,33 @@ jaclang/langserve/tests/test_sem_tokens.py,sha256=HWNaA1CK5qxFeipmd4AAvjAbJSEW4-
|
|
|
168
168
|
jaclang/langserve/tests/test_server.py,sha256=Z-RXNuCXFPi67uXkW1hmoJmrb37VFRpRdHJ9vXvBvSQ,22914
|
|
169
169
|
jaclang/langserve/utils.py,sha256=edZCrq8ZFolao-rvv5RGPxtnEh6NmhrxOgPh8VxmEPs,15019
|
|
170
170
|
jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
|
|
171
|
-
jaclang/plugin/builtin.py,sha256=
|
|
172
|
-
jaclang/plugin/default.py,sha256=
|
|
173
|
-
jaclang/plugin/feature.py,sha256=
|
|
171
|
+
jaclang/plugin/builtin.py,sha256=pYw5Ox-bYi_c-lF6FLA7cBLRIKX8dBrIrEutnhmXisU,1468
|
|
172
|
+
jaclang/plugin/default.py,sha256=6rwqlXITRbjbERvMMbKtJnk_yhS9M1koHQrfoecunC8,48829
|
|
173
|
+
jaclang/plugin/feature.py,sha256=gYpb0MHPwwLMqWPgmn2BdQcwknGoHR5MFIm0L0--6Yc,17521
|
|
174
174
|
jaclang/plugin/plugin.md,sha256=B252QTH3c8uZyvXTbGmZBafZtdXstFC5vT5jIN_gS4U,9994
|
|
175
|
-
jaclang/plugin/spec.py,sha256=
|
|
175
|
+
jaclang/plugin/spec.py,sha256=xylKtCYzImXv0-FgZfJ5xEb1QoVHkEivWQ0FvwoUnVQ,15054
|
|
176
176
|
jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
|
|
177
|
-
jaclang/plugin/tests/fixtures/graph_purger.jac,sha256=
|
|
177
|
+
jaclang/plugin/tests/fixtures/graph_purger.jac,sha256=aGXjkDt8-bZSEeMIvoAqEEm32XaWtXXwyeeslaujnNQ,1565
|
|
178
178
|
jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
|
|
179
179
|
jaclang/plugin/tests/fixtures/impl_match_impl.jac,sha256=k1385r7Hdlq6mUKxEHa3VOKJUIWH08hYg2kErhbYwFM,31
|
|
180
|
-
jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=
|
|
181
|
-
jaclang/plugin/tests/fixtures/savable_object.jac,sha256=
|
|
180
|
+
jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=32uTTbN-VVNHOwpF8AXNSqucqFjhXECtoDr8kSmX91Y,2049
|
|
181
|
+
jaclang/plugin/tests/fixtures/savable_object.jac,sha256=SPMmuXkC2QjNNmJ_CEbid86fd0ncanPTs6hLKDe7T04,2032
|
|
182
182
|
jaclang/plugin/tests/fixtures/simple_node_connection.jac,sha256=KdbpACWtnj92TqQqEunwoI4VKhlnhcJCKMkbgh0Xqxg,1067
|
|
183
183
|
jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8ICBZEBZzHhqha0xQFFBK_DSI,624
|
|
184
|
+
jaclang/plugin/tests/fixtures/traversing_save.jac,sha256=Y7ki1eVUzY9O5nhbrjb_JATk6ySsD1GyBfjj-YdImgs,252
|
|
184
185
|
jaclang/plugin/tests/test_features.py,sha256=sK9d2UazofGl9qYZO_ODKmOHZY8E4fnXNoyw-_KQI9A,2344
|
|
185
|
-
jaclang/plugin/tests/test_jaseci.py,sha256=
|
|
186
|
+
jaclang/plugin/tests/test_jaseci.py,sha256=owGt7_IM_aW8uP3nBjRrGaAaouno2uxDyy_zB-QHAKY,28431
|
|
186
187
|
jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
188
|
jaclang/runtimelib/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
|
|
188
|
-
jaclang/runtimelib/architype.py,sha256=
|
|
189
|
+
jaclang/runtimelib/architype.py,sha256=rcxXe34Vtoz-tNQPqPHmmnh2-G_iJJCjfdXDO5k9kQc,8474
|
|
189
190
|
jaclang/runtimelib/constructs.py,sha256=1ARnsPrDi1UvyaFRhGRhO0kj0fnIZ2HbHF7O3itB-ZQ,796
|
|
190
|
-
jaclang/runtimelib/context.py,sha256=
|
|
191
|
+
jaclang/runtimelib/context.py,sha256=xYg1DT85YIN0AhH16mTYYoQDjqUSPHmr9As611NITRI,6303
|
|
191
192
|
jaclang/runtimelib/importer.py,sha256=A2YIoPTPaRYvIrj3JZL7bDOyxFpU25Ld-V_fWQMsTbE,15650
|
|
192
193
|
jaclang/runtimelib/machine.py,sha256=JvJiuh_QSFmqHIwWsOXb1pRPdAmM7sadUzWkNpb6jJc,11571
|
|
193
194
|
jaclang/runtimelib/memory.py,sha256=LrVTo6Cac0q-YG1wug-Fgc8O2Tue9zRHnxSulDw3ZQ4,5656
|
|
194
195
|
jaclang/runtimelib/test.py,sha256=4HW7MjHmxjwWjwtIqLtFpcq9B9rI4NmyA92qFy9yhz8,4709
|
|
195
196
|
jaclang/runtimelib/utils.py,sha256=6_fLmG3zfcX7cVKCq_NvkGjsDsx1nxvV_1GLpyIp8IY,9150
|
|
196
|
-
jaclang/settings.py,sha256=
|
|
197
|
+
jaclang/settings.py,sha256=oQIP5ht6YhdxogK05eOVs9JuitK65_9dMRBMNBwWS54,3864
|
|
197
198
|
jaclang/tests/fixtures/abc.jac,sha256=HZvLz6IEt3Snlgg8Czs-N4emLjg4fT3IbTo95d3Gdww,1747
|
|
198
199
|
jaclang/tests/fixtures/access_checker.jac,sha256=UVoY7sYW-R0ms2HDA4HXQ5xJNiW0vEbY2T5CCY1avus,281
|
|
199
200
|
jaclang/tests/fixtures/access_modifier.jac,sha256=NJHXbu_N_cWpTkjJnwcHzWkEk2kroaQ8aaalVxPXAW8,2587
|
|
@@ -208,6 +209,7 @@ jaclang/tests/fixtures/baddy.test.jac,sha256=Uq-Nlf44QUAtbOfDCbc9_ceLxmo31PILDTS
|
|
|
208
209
|
jaclang/tests/fixtures/bar.jac,sha256=XZWOrzgMQed2R611DLfzCvWUT4a4gTYZXWRYvizMb18,782
|
|
209
210
|
jaclang/tests/fixtures/base_class1.jac,sha256=OlQSzWdas7AKrvZb-gfq8DdwwearzOke3stE6TFXVQA,124
|
|
210
211
|
jaclang/tests/fixtures/base_class2.jac,sha256=B-MD5LYDVJMTxEC9-B7tJyW900ymYU7p_hcmZm5eNRg,118
|
|
212
|
+
jaclang/tests/fixtures/base_class_complex_expr.jac,sha256=TW-uqrFInAVs3xCiWvMJkntYJZmb8jpSWFJetpu45Xk,436
|
|
211
213
|
jaclang/tests/fixtures/blankwithentry.jac,sha256=lnMDDKyKnldsUIx1AVCIHt47KY3gR2CZYhox8663sLM,53
|
|
212
214
|
jaclang/tests/fixtures/builtin_dotgen.jac,sha256=U2r_bmSsMDuJWuo9vYoRCgRIo9NA9-VkaaiacvAMeS8,1814
|
|
213
215
|
jaclang/tests/fixtures/builtins_test.jac,sha256=1eJXipIFpa8IDjKv20TjAW_k4hTtJzNT1cKnQOAVt28,244
|
|
@@ -216,7 +218,7 @@ jaclang/tests/fixtures/chandra_bugs.jac,sha256=vcBjZ4P7S1PPUs-_0Stt779pus95RJTMs
|
|
|
216
218
|
jaclang/tests/fixtures/chandra_bugs2.jac,sha256=OZP6JOsIr8WK-joPZ54-LcbVVvtuZ5ILPdkynSSx3uU,559
|
|
217
219
|
jaclang/tests/fixtures/circle_pysolo.py,sha256=TAJTCOjrUl80oDke5wl6ZyBJQsy37Hu6gYdqcO-tQlY,2477
|
|
218
220
|
jaclang/tests/fixtures/cls_method.jac,sha256=FXvQzQpa00yvesEvnuZ9q0lA-dtGDeFR4sWLKZ4NJSc,737
|
|
219
|
-
jaclang/tests/fixtures/create_dynamic_architype.jac,sha256=
|
|
221
|
+
jaclang/tests/fixtures/create_dynamic_architype.jac,sha256=zblilyQTjW-GpnPbwzMTkP5c-QTbXYWB03ekg-cPXvM,830
|
|
220
222
|
jaclang/tests/fixtures/dblhello.jac,sha256=2CKdYZj35AXzvA2SCBHhgvG5f0bnlpLdQ36eqKCmI-M,69
|
|
221
223
|
jaclang/tests/fixtures/decl_defn_param_name.jac,sha256=rZnJhg-2z9W5PCsid9_FXW31376jgVpkvsAO6pBqTe8,383
|
|
222
224
|
jaclang/tests/fixtures/deep/deeper/deep_outer_import.jac,sha256=omdlOBM0cuUAHhmxYC02OcpXNowiA5wrIZOs7jQFHgE,233
|
|
@@ -282,6 +284,7 @@ jaclang/tests/fixtures/needs_import_1.jac,sha256=m8marIqHPo-waC5PIYeLq38N2QzRUJB
|
|
|
282
284
|
jaclang/tests/fixtures/needs_import_2.jac,sha256=RC4aok5TCbxInmTp8OmArCt4afawPP9ZdhAzkW5WJCc,104
|
|
283
285
|
jaclang/tests/fixtures/needs_import_3.jac,sha256=9ASkW82KUKDgydt8dR48XucG66n6xeLEGLwAgRgfOR8,104
|
|
284
286
|
jaclang/tests/fixtures/needs_import_dup.jac,sha256=hJab0QWdoTLuNaNhtY6zjzyGGUouRyT9uQknhP-lXXQ,315
|
|
287
|
+
jaclang/tests/fixtures/nested_impls.jac,sha256=cqEWvu7ITe34DPld_-j8WqrRz3x7WeEbbFrZFA8NOYY,1093
|
|
285
288
|
jaclang/tests/fixtures/nosigself.jac,sha256=jCjNizUVOrgJwXJ_-TdOzKsq8hlhU6xuX0Mz27W92lQ,187
|
|
286
289
|
jaclang/tests/fixtures/objref.jac,sha256=u_Sc8CTbsqe0D0VI5jUEWsV36l2PH0uNukSn3LSlJPI,195
|
|
287
290
|
jaclang/tests/fixtures/pyfunc.py,sha256=Os1xnL4I4ddNkpv4Vs5aOxu95dEM0JuNIoiECyCCjJ0,163
|
|
@@ -317,15 +320,16 @@ jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2
|
|
|
317
320
|
jaclang/tests/foo/__init__.jac,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
321
|
jaclang/tests/main.jac,sha256=UJ4dASLCMA3wW78Rq3AHcq5GfXVY5QBm2S16OCrR1hQ,13
|
|
319
322
|
jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
|
|
320
|
-
jaclang/tests/test_cli.py,sha256=
|
|
321
|
-
jaclang/tests/test_language.py,sha256=
|
|
323
|
+
jaclang/tests/test_cli.py,sha256=j79-e3lVk_oBuy6pAwfjE8D-q5UsUQxEF5yoexWj8Jg,20040
|
|
324
|
+
jaclang/tests/test_language.py,sha256=znQDqixddJMGS5MYr7FZIbdQ4uO41yqermdVbcmAdFI,51745
|
|
322
325
|
jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
|
|
323
|
-
jaclang/tests/test_reference.py,sha256=
|
|
326
|
+
jaclang/tests/test_reference.py,sha256=vZC0P1zptbxzc9CwgbhqA2tGVML_ptL8tON9Czh_dJg,3359
|
|
324
327
|
jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
|
|
325
328
|
jaclang/utils/__init__.py,sha256=86LQ_LDyWV-JFkYBpeVHpLaVxkqwFDP60XpWXOFZIQk,46
|
|
326
|
-
jaclang/utils/helpers.py,sha256=
|
|
329
|
+
jaclang/utils/helpers.py,sha256=oL5yvcSalOdzsZ5yUDaMu70MnvBjvGRFJD94kGhLqT0,10410
|
|
327
330
|
jaclang/utils/lang_tools.py,sha256=HECF9zXH8si6Q_oBhSSoOMmv-k8ppKPb6RAlX_wZPWE,10177
|
|
328
331
|
jaclang/utils/log.py,sha256=G8Y_DnETgTh9xzvlW5gh9zqJ1ap4YY_MDTwIMu5Uc0Y,262
|
|
332
|
+
jaclang/utils/profiler.py,sha256=0lPKlMiMlUw2AdZI9MjP4ktOZz4yAzFsl5NgOJIW2yU,2083
|
|
329
333
|
jaclang/utils/test.py,sha256=c12ZyRvG2IQtuRaU9XEGBrdM26fH82tWP9u64HH2Mz4,6089
|
|
330
334
|
jaclang/utils/tests/__init__.py,sha256=8uwVqMsc6cxBAM1DuHLuNuTnzLXqOqM-WRa4ixOMF6w,23
|
|
331
335
|
jaclang/utils/tests/test_lang_tools.py,sha256=wIMWdoKF24gVTlG_dGLAxetZhGmBF8cftUY-bugNOOQ,4879
|
|
@@ -1552,7 +1556,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
|
|
|
1552
1556
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
|
|
1553
1557
|
jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
1554
1558
|
jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
|
|
1555
|
-
jaclang-0.7.
|
|
1556
|
-
jaclang-0.7.
|
|
1557
|
-
jaclang-0.7.
|
|
1558
|
-
jaclang-0.7.
|
|
1559
|
+
jaclang-0.7.32.dist-info/METADATA,sha256=ceJwm1Seys2lWaURbPqWVexHsrF0sZT6fZBczWy97ro,4977
|
|
1560
|
+
jaclang-0.7.32.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
1561
|
+
jaclang-0.7.32.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
|
|
1562
|
+
jaclang-0.7.32.dist-info/RECORD,,
|
|
File without changes
|