jaclang 0.7.21__py3-none-any.whl → 0.7.23__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.

@@ -80,6 +80,18 @@ class JacLanguageTests(TestCase):
80
80
  "\nValue: 5\nValue: 6\nValue: 7\nFinal Value: 8\nDone walking.\n",
81
81
  )
82
82
 
83
+ def test_simple_walk_by_edge(self) -> None:
84
+ """Parse micro jac file."""
85
+ captured_output = io.StringIO()
86
+ sys.stdout = captured_output
87
+ jac_import("micro.simple_walk_by_edge", base_path=self.examples_abs_path(""))
88
+ sys.stdout = sys.__stdout__
89
+ stdout_value = captured_output.getvalue()
90
+ self.assertEqual(
91
+ stdout_value,
92
+ "Visited 1\nVisited 2\n",
93
+ )
94
+
83
95
  def test_guess_game(self) -> None:
84
96
  """Parse micro jac file."""
85
97
  captured_output = io.StringIO()
@@ -101,7 +113,7 @@ class JacLanguageTests(TestCase):
101
113
  stdout_value = captured_output.getvalue()
102
114
  self.assertEqual(
103
115
  stdout_value,
104
- "<link href='{'new_val': 3, 'where': 'from_foo'} rel='stylesheet'\nTrue\n",
116
+ "<link href='{'new_val': 3, 'where': 'from_foo'}' rel='stylesheet'>\nTrue\n",
105
117
  )
106
118
 
107
119
  def test_chandra_bugs2(self) -> None:
@@ -212,6 +224,20 @@ class JacLanguageTests(TestCase):
212
224
  self.assertEqual(stdout_value.count(r"\\\\"), 2)
213
225
  self.assertEqual(stdout_value.count("<class 'bytes'>"), 3)
214
226
 
227
+ def test_fstring_multiple_quotation(self) -> None:
228
+ """Test fstring with multiple quotation."""
229
+ captured_output = io.StringIO()
230
+ sys.stdout = captured_output
231
+ jac_import(
232
+ "compiler/passes/main/tests/fixtures/fstrings",
233
+ base_path=self.fixture_abs_path("../../"),
234
+ )
235
+ sys.stdout = sys.__stdout__
236
+ stdout_value = captured_output.getvalue()
237
+ self.assertEqual(stdout_value.split("\n")[0], "11 13 12 12 11 12 12")
238
+ self.assertEqual(stdout_value.split("\n")[1], '12 12 """hello""" 18 18')
239
+ self.assertEqual(stdout_value.split("\n")[2], "11 12 11 12 11 18 23")
240
+
215
241
  def test_deep_imports(self) -> None:
216
242
  """Parse micro jac file."""
217
243
  captured_output = io.StringIO()
@@ -511,13 +537,11 @@ class JacLanguageTests(TestCase):
511
537
  self.assertIn("can greet2(**kwargs: Any)", output)
512
538
  self.assertEqual(output.count("with entry {"), 13)
513
539
  self.assertIn(
514
- '"""Enum for shape types"""\nenum ShapeType{ CIRCLE = "Circle",\n',
540
+ '"""Enum for shape types"""\nenum ShapeType{ CIRCLE = \'Circle\',\n',
515
541
  output,
516
542
  )
517
- self.assertIn(
518
- "UNKNOWN = \"Unknown\",\n::py::\nprint('hello')\n::py::\n }", output
519
- )
520
- self.assertIn('assert x == 5 , "x should be equal to 5" ;', output)
543
+ self.assertIn("\nUNKNOWN = 'Unknown',\n::py::\nprint('hello')\n::", output)
544
+ self.assertIn("assert x == 5 , 'x should be equal to 5' ;", output)
521
545
  self.assertIn("if not x == y {", output)
522
546
  self.assertIn("can greet2(**kwargs: Any) {", output)
523
547
  self.assertIn("squares_dict = {x: (x ** 2) for x in numbers};", output)
@@ -792,7 +816,7 @@ class JacLanguageTests(TestCase):
792
816
  settings.print_py_raised_ast = True
793
817
  ir = jac_pass_to_pass(py_ast_build_pass, schedule=py_code_gen_typed).ir
794
818
  jac_ast = ir.pp()
795
- self.assertIn(' | +-- String - "Loop compl', jac_ast)
819
+ self.assertIn(" | +-- String - 'Loop completed normally{}'", jac_ast)
796
820
  self.assertEqual(len(ir.get_all_sub_nodes(ast.SubNodeList)), 269)
797
821
  captured_output = io.StringIO()
798
822
  sys.stdout = captured_output
@@ -1058,6 +1082,38 @@ class JacLanguageTests(TestCase):
1058
1082
  f"Expected '{val}' to appear 2 times, but found {len(occurrences)}.",
1059
1083
  )
1060
1084
 
1085
+ def test_dynamic_architype_creation(self) -> None:
1086
+ """Test that the walker and node can be created dynamically."""
1087
+ captured_output = io.StringIO()
1088
+ sys.stdout = captured_output
1089
+ cli.run(self.fixture_abs_path("create_dynamic_architype.jac"))
1090
+
1091
+ output = captured_output.getvalue().strip()
1092
+ # Expected outputs for spawned entities
1093
+ expected_spawned_walker = "Dynamic Node Value: 99"
1094
+
1095
+ # Check for the spawned messages
1096
+ self.assertTrue(
1097
+ expected_spawned_walker in output,
1098
+ f"Expected '{expected_spawned_walker}' in output.",
1099
+ )
1100
+
1101
+ def test_dynamic_architype_creation_rel_import(self) -> None:
1102
+ """Test that the walker and node can be created dynamically, with relative import."""
1103
+ captured_output = io.StringIO()
1104
+ sys.stdout = captured_output
1105
+ cli.run(self.fixture_abs_path("arch_rel_import_creation.jac"))
1106
+
1107
+ output = captured_output.getvalue().strip().splitlines()
1108
+ # Expected outputs for spawned entities
1109
+ expected_values = ["DynamicWalker Started", "UtilityNode Data: 42"]
1110
+ for val in expected_values:
1111
+ # Check for the spawned messages
1112
+ self.assertTrue(
1113
+ val in output,
1114
+ f"Expected '{val}' in output.",
1115
+ )
1116
+
1061
1117
  def test_object_ref_interface(self) -> None:
1062
1118
  """Test class method output."""
1063
1119
  captured_output = io.StringIO()
@@ -1091,3 +1147,12 @@ class JacLanguageTests(TestCase):
1091
1147
  self.assertIn(
1092
1148
  "Exiting at the end of walker: test_node(value=", stdout_value[11]
1093
1149
  )
1150
+
1151
+ def test_visit_order(self) -> None:
1152
+ """Test entry and exit behavior of walker."""
1153
+ captured_output = io.StringIO()
1154
+ sys.stdout = captured_output
1155
+ jac_import("visit_order", base_path=self.fixture_abs_path("./"))
1156
+ sys.stdout = sys.__stdout__
1157
+ stdout_value = captured_output.getvalue()
1158
+ self.assertEqual("[MyNode(Name='End'), MyNode(Name='Middle')]\n", stdout_value)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jaclang
3
- Version: 0.7.21
3
+ Version: 0.7.23
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
@@ -1,12 +1,12 @@
1
- jaclang/__init__.py,sha256=quKqbhKk5CQ0k798jIXMbeAKzQxD0yhOpQGSvYD6TD8,399
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=P2Hqzpb9q9uR_mbyFb8ojr3ff3oDbcP6m1G1kKWkR80,15911
5
+ jaclang/cli/cli.py,sha256=42ebFJyoIIUl8Jn9CHSfm9CgM6meHYDddgk3gGoY-dQ,15969
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=O1GO5Hb02vRlz7OpYHinQV5lQ7YuNUV9Hgjlc3QWtZg,2780
9
- jaclang/compiler/absyntree.py,sha256=6sFVBPhLJKopwfYYtK3-VQBh9AukXmmUGdE60FVyMaE,138072
9
+ jaclang/compiler/absyntree.py,sha256=cBF837cKo7lUDzBX_dvzCf0pCOcq4eNsHgseIjgEvXk,139002
10
10
  jaclang/compiler/codeloc.py,sha256=YhJcHjhMCOT6mV1qLehwriuFgW0H2-ntq68k_r8yBs4,2800
11
11
  jaclang/compiler/compile.py,sha256=0d8p4i2LXg2RCu1XfWx_Jq_dx7pK2Zn2VIj-apvX_nI,3389
12
12
  jaclang/compiler/constant.py,sha256=gKccXK4Qf3CWuv8J1oaWrwqdP7CRIf7ndayquRx6Xgs,9007
@@ -22,7 +22,7 @@ jaclang/compiler/passes/main/fuse_typeinfo_pass.py,sha256=-rhK5SN9ORr7gTv9KVS1TG
22
22
  jaclang/compiler/passes/main/import_pass.py,sha256=9uoC_gxDs3FmLBBzQ8A1YQNHUlWQkAlKi55-AMkM3hs,12690
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=k-tf5cZVlygDg4BGBYcAznO6w0hM4-0Pdzlwr4Sw48I,94027
25
+ jaclang/compiler/passes/main/pyast_load_pass.py,sha256=DPbHECLOHmThoGvmHJCr3mjR21MMGtlY3dp_8S2-iPQ,94148
26
26
  jaclang/compiler/passes/main/pybc_gen_pass.py,sha256=CjA9AqyMO3Pv_b5Hh0YI6JmCqIru2ASonO6rhrkau-M,1336
27
27
  jaclang/compiler/passes/main/pyjac_ast_link_pass.py,sha256=1pW0uLEnhM5hCwVFAREdd_miyr3qTK0h_SJVfR_ryig,8604
28
28
  jaclang/compiler/passes/main/pyout_pass.py,sha256=QWVB-AyVBha3OespP89LMuslRsdG2niZErwtnRPiURM,3191
@@ -42,7 +42,7 @@ jaclang/compiler/passes/main/tests/fixtures/blip.jac,sha256=Fx9zqQ8VkiQ6vgzbQv9L
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
44
  jaclang/compiler/passes/main/tests/fixtures/defs_and_uses.jac,sha256=zTTq_0u8ITmODu8rjRloI5Imwf2dICHdiKdOnzcgpbg,901
45
- jaclang/compiler/passes/main/tests/fixtures/fstrings.jac,sha256=h5bj-VWRv8g6POMVxQ1VPq6SI7QitZahAFMSmrp6Daw,75
45
+ jaclang/compiler/passes/main/tests/fixtures/fstrings.jac,sha256=6QRZtTSuG1vIA7egTv-rY27U6HRaXeiOyuNs1sIU5Bk,1089
46
46
  jaclang/compiler/passes/main/tests/fixtures/func.jac,sha256=i175hPkR4tgf5SMZOrrCHjAE12mVlf6qUsu0mcJmJBE,297
47
47
  jaclang/compiler/passes/main/tests/fixtures/func2.jac,sha256=ZxgLe7VA57daLkqoB8MefdEE8dZIoFv2Dq-Zx-yHKxI,124
48
48
  jaclang/compiler/passes/main/tests/fixtures/game1.jac,sha256=oiTadkrYJRUo6ZkHUi7I54J_0GoTTtsNLhhofTlz0uY,263
@@ -71,7 +71,7 @@ jaclang/compiler/passes/main/tests/test_sub_node_pass.py,sha256=afz0Kh5xBCeNXQSI
71
71
  jaclang/compiler/passes/main/tests/test_sym_tab_build_pass.py,sha256=85mUM6mYYLCrQ9AivBIbreG7CgdsJH2zrNOqdcpnwBo,730
72
72
  jaclang/compiler/passes/main/tests/test_type_check_pass.py,sha256=zTJieGdiHFunOXkUjv2q8H3h-sPT9uym_uCm6HcQzZU,2265
73
73
  jaclang/compiler/passes/main/tests/test_typeinfo_pass.py,sha256=o908glXImFXOlKKTUyxp4rxsso0vJbduli5Rvbd3KXE,1017
74
- jaclang/compiler/passes/main/type_check_pass.py,sha256=6L8yGBmZqNZuYabaJKt19mGse4x3r1YKA0Nr7LVPOtE,4276
74
+ jaclang/compiler/passes/main/type_check_pass.py,sha256=nIDrX49L3u7kToW3h-m2XI9FKr9UY_Wn_Y28TsVifZc,4273
75
75
  jaclang/compiler/passes/tool/__init__.py,sha256=xekCOXysHIcthWm8NRmQoA1Ah1XV8vFbkfeHphJtUdc,223
76
76
  jaclang/compiler/passes/tool/fuse_comments_pass.py,sha256=CSnuWy4gZfTcWKe0Q7LBikBgWe1zJr0QmNUkgrZ7B38,3657
77
77
  jaclang/compiler/passes/tool/jac_formatter_pass.py,sha256=-J4UOdo5BBMi9raT0KJ4ESVlu_70dzaLRGoWAZGPUyM,91213
@@ -163,32 +163,34 @@ jaclang/langserve/tests/test_sem_tokens.py,sha256=HWNaA1CK5qxFeipmd4AAvjAbJSEW4-
163
163
  jaclang/langserve/tests/test_server.py,sha256=psv23hfxQZnq_pGlY1Xf9S2oUJk2QpYMPmCjQ0mRwzc,22910
164
164
  jaclang/langserve/utils.py,sha256=rtFO1OYrgU6RmFhNs43anZac79sUwe3oZxlYB0s3CXs,14522
165
165
  jaclang/plugin/__init__.py,sha256=5t2krHKt_44PrCTGojzxEimxpNHYVQcn89jAiCSXE_k,165
166
- jaclang/plugin/builtin.py,sha256=Hj8SVcauuhzsPQJBzt8jIfHkSUAcqsKfAFyCPYdBZKA,1300
167
- jaclang/plugin/default.py,sha256=oxPO7tud8VqP20BrfnDNpLPtM0kaL00s-1F70X3hvCg,31173
168
- jaclang/plugin/feature.py,sha256=SgTFAjJI_SbYn2ZdUsx-b4vtYHnl_STRa5oV7AM2yX8,11603
169
- jaclang/plugin/spec.py,sha256=TlNUQu51daKsmiPeFoQcXZ7HVdoYN5zGA03OAMmpVac,10362
166
+ jaclang/plugin/builtin.py,sha256=zNTbe5knJrGFgJRa4l4hMzzuij6iXFyVqRTxputUHIo,1307
167
+ jaclang/plugin/default.py,sha256=eAM8CJ0hCV5bvxQgtIdb70EGiFAS8XE9N3Vxzzsygus,45213
168
+ jaclang/plugin/feature.py,sha256=jJkpdaJ8dmz80RjcBn36Ik9GzrvpB5gD3kmhSBqykRc,16571
169
+ jaclang/plugin/spec.py,sha256=LIIv2v7j9ij6VGH1_tIRingzn6OVgeEusZakNskQf9Y,14299
170
170
  jaclang/plugin/tests/__init__.py,sha256=rn_tNG8jCHWwBc_rx4yFkGc4N1GISb7aPuTFVRTvrTk,38
171
171
  jaclang/plugin/tests/fixtures/impl_match.jac,sha256=WEhcA1GlovusITEFO2bOjYYqiiULyYGKhM17uK2GqnI,91
172
172
  jaclang/plugin/tests/fixtures/impl_match_impl.jac,sha256=k1385r7Hdlq6mUKxEHa3VOKJUIWH08hYg2kErhbYwFM,31
173
- jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=1c4bSybAw8qRMtLjRk2lMqClkzgLXFZEZXoqr-Hkmxk,1687
173
+ jaclang/plugin/tests/fixtures/other_root_access.jac,sha256=EwCQcbVt2FHlsH0PGw2WbFtk5mTQH2pP64RLGi0A2Zg,1662
174
174
  jaclang/plugin/tests/fixtures/simple_node_connection.jac,sha256=KdbpACWtnj92TqQqEunwoI4VKhlnhcJCKMkbgh0Xqxg,1067
175
175
  jaclang/plugin/tests/fixtures/simple_persistent.jac,sha256=o0TZTOJEZjFW8A2IGY8ICBZEBZzHhqha0xQFFBK_DSI,624
176
- jaclang/plugin/tests/test_features.py,sha256=p0N5inZn92Cj0eqslmDR0-q6pVG8hkcQfA6CuQcfP3Y,2352
176
+ jaclang/plugin/tests/test_features.py,sha256=sK9d2UazofGl9qYZO_ODKmOHZY8E4fnXNoyw-_KQI9A,2344
177
177
  jaclang/plugin/tests/test_jaseci.py,sha256=3c5MtOoxxHtMkaWduaqVim1xcv8FyQXkgBh9AC9eNCE,20315
178
178
  jaclang/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
179
  jaclang/runtimelib/__init__.py,sha256=jDDYBCV82qPhmcDVk3NIvHbhng0ebSrXD3xrojg0-eo,34
180
- jaclang/runtimelib/architype.py,sha256=J83ZIx-rhEVexpyUEeDcOwpJCsuXPoS79e8-I69k_Hw,22501
181
- jaclang/runtimelib/constructs.py,sha256=QWut5kKRaBbIelb12cpTSa_D0xDGPOoHHq4SaDetyo8,760
182
- jaclang/runtimelib/context.py,sha256=gUiPZ4ZoHoz_vHjxG9kvIw4hlmx8G8lPTquGC6qJoi4,5609
180
+ jaclang/runtimelib/architype.py,sha256=_4xCawHqmM5ASXwq9wxjStvqJlPdi9zJ5wvKU_QFt6U,7910
181
+ jaclang/runtimelib/constructs.py,sha256=1ARnsPrDi1UvyaFRhGRhO0kj0fnIZ2HbHF7O3itB-ZQ,796
182
+ jaclang/runtimelib/context.py,sha256=8WkCxs_qnp311R6FdKLBSOd8hS2XXnHJgQheU7QVWJE,5480
183
183
  jaclang/runtimelib/importer.py,sha256=EzttjsUvcmuWkeqjyThRlCzsEu2rVHD8yhzy3WWOlQE,14463
184
- jaclang/runtimelib/machine.py,sha256=PEHCMx5R61K-aB60b3d2oyh4iqHn1ZK7xbLVNEm1iYE,8839
185
- jaclang/runtimelib/memory.py,sha256=2A7UbTaY0GxY8ZcMhGFu5SPmY00f4BuHj2sgerb4WXo,5074
184
+ jaclang/runtimelib/machine.py,sha256=snxNctPZPlCZxYgQRcFBDl-BTvzG8lnwG-hrtkgytU8,10829
185
+ jaclang/runtimelib/memory.py,sha256=SlzDYNi_R1Jj5WfLfW2y0Rta5GAD6CIKiONEo4LbfHI,5033
186
186
  jaclang/runtimelib/test.py,sha256=HRCl3cf0uPTe58Kcx_sBUb6ow8J53rnmpFOhA7g9oAA,2851
187
187
  jaclang/runtimelib/utils.py,sha256=P9gVE3XFhRzr745RCDXXIP391AcsL4aL_6HrXws_qa4,8155
188
188
  jaclang/settings.py,sha256=381YK66eXqDSnWhzTHMHfbmvwfQPEI_1yPLa0RFwzKo,3553
189
189
  jaclang/tests/fixtures/abc.jac,sha256=HZvLz6IEt3Snlgg8Czs-N4emLjg4fT3IbTo95d3Gdww,1747
190
190
  jaclang/tests/fixtures/access_checker.jac,sha256=UVoY7sYW-R0ms2HDA4HXQ5xJNiW0vEbY2T5CCY1avus,281
191
191
  jaclang/tests/fixtures/access_modifier.jac,sha256=NJHXbu_N_cWpTkjJnwcHzWkEk2kroaQ8aaalVxPXAW8,2587
192
+ jaclang/tests/fixtures/arch_create_util.jac,sha256=3pRe9JyCGO_8Z7XYnSKPehyOAAPf6747fHvgrMz6wQU,133
193
+ jaclang/tests/fixtures/arch_rel_import_creation.jac,sha256=B9VlwYayHYBUsAKpiapPgv93apMXiWcILJ13hXyAOCs,624
192
194
  jaclang/tests/fixtures/arithmetic_bug.jac,sha256=iiO3ZwTi7R1U6-flV4tGbxDHXsw8GnaLEzVNGTPdMUA,135
193
195
  jaclang/tests/fixtures/assign_compr.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
194
196
  jaclang/tests/fixtures/assign_compr_dup.jac,sha256=rnoujdtpjNbem4IdtBfxPahSUXl-gxNv4JFNEuUs5iM,286
@@ -203,6 +205,7 @@ jaclang/tests/fixtures/chandra_bugs.jac,sha256=vcBjZ4P7S1PPUs-_0Stt779pus95RJTMs
203
205
  jaclang/tests/fixtures/chandra_bugs2.jac,sha256=OZP6JOsIr8WK-joPZ54-LcbVVvtuZ5ILPdkynSSx3uU,559
204
206
  jaclang/tests/fixtures/circle_pysolo.py,sha256=TAJTCOjrUl80oDke5wl6ZyBJQsy37Hu6gYdqcO-tQlY,2477
205
207
  jaclang/tests/fixtures/cls_method.jac,sha256=FXvQzQpa00yvesEvnuZ9q0lA-dtGDeFR4sWLKZ4NJSc,737
208
+ jaclang/tests/fixtures/create_dynamic_architype.jac,sha256=DTm761q0q6CRwduH3xyeCRs-epuPgZTRysWG_3fCxS8,846
206
209
  jaclang/tests/fixtures/dblhello.jac,sha256=2CKdYZj35AXzvA2SCBHhgvG5f0bnlpLdQ36eqKCmI-M,69
207
210
  jaclang/tests/fixtures/deep/deeper/deep_outer_import.jac,sha256=omdlOBM0cuUAHhmxYC02OcpXNowiA5wrIZOs7jQFHgE,233
208
211
  jaclang/tests/fixtures/deep/deeper/deep_outer_import2.jac,sha256=YlAclVAukzVeCNbXZU6iTl8Rj1uXpUJ1WR7Ei2vhbqc,252
@@ -218,9 +221,9 @@ jaclang/tests/fixtures/deep_import_mods.jac,sha256=MBGytfHfyVA9GjH9wKJ1iLyAdNkRj
218
221
  jaclang/tests/fixtures/deferred_field.jac,sha256=pOO6YT7vwkGr4frOSvWzGx3pO5jyZxeQInuEukcVF_Q,177
219
222
  jaclang/tests/fixtures/disconn.jac,sha256=gRbNh6R6t-cTdB6lT4M7HW7cdGoYoGV5Bnp3NhW7DX4,517
220
223
  jaclang/tests/fixtures/dynamic_architype.jac,sha256=jt74XfBZc5A6yWdk_DOTUhAg__TM_l6biHOxzTWQXq8,1015
221
- jaclang/tests/fixtures/edge_node_walk.jac,sha256=_cJXZ9D19F5a921Cmiu42ap78wwoCV7By3dknVP11bk,963
224
+ jaclang/tests/fixtures/edge_node_walk.jac,sha256=x_eD24TBYFv9xLgaDevE-7klwJT9oj0dpCOeZe72wNs,959
222
225
  jaclang/tests/fixtures/edge_ops.jac,sha256=b6XsApxIQUelPPAfReQor3ha2iDtAbNVpcihxTOyTgs,967
223
- jaclang/tests/fixtures/edges_walk.jac,sha256=w07KWk-CKVa7G2OraLqQ5zFQRnYnBD7eYc0li7VU39o,802
226
+ jaclang/tests/fixtures/edges_walk.jac,sha256=nj_uxQ8Kx1x1ghIf010OngxlpPu8Ah1Y7kfYLGJ4oPo,798
224
227
  jaclang/tests/fixtures/edgetypeissue.jac,sha256=ZsJuNdtmD_fu2b7sDJ_tWZjoDI_rxouDEcSWkahhBS0,118
225
228
  jaclang/tests/fixtures/entry_exit.jac,sha256=Vl4f5TNCXEfTDurPiOnPWShW15RWAp5Rm4L1tI5bXOo,763
226
229
  jaclang/tests/fixtures/enum_inside_archtype.jac,sha256=EiuL9szE0ISfeczoVcnZyw0eK1n6vc6_koDf0cHgoh4,236
@@ -230,7 +233,7 @@ jaclang/tests/fixtures/err2.jac,sha256=x8h69NTVMGJa_UicY-CZblLMdeH09myTeiYqNFami
230
233
  jaclang/tests/fixtures/err_runtime.jac,sha256=giiZvN1x_cHYWdXtghdzasxYjUp2MNOdH6Pf2H6-aGI,177
231
234
  jaclang/tests/fixtures/foo.jac,sha256=53v2aODH1u73xi8B4UdxyM8Ow6C29H-se8yNwOXs0lg,1083
232
235
  jaclang/tests/fixtures/game1.jac,sha256=oiTadkrYJRUo6ZkHUi7I54J_0GoTTtsNLhhofTlz0uY,263
233
- jaclang/tests/fixtures/gendot_bubble_sort.jac,sha256=2j-SauIfPgmIe5s_pubVxRI7OGwQjL9jHMQnDG6LREk,1542
236
+ jaclang/tests/fixtures/gendot_bubble_sort.jac,sha256=M6zepcnGyMJMrECEz3DSPkCTNVLtcDIp63VTxHTwpXo,1538
234
237
  jaclang/tests/fixtures/guess_game.jac,sha256=S2sWoF22SY2PbadKQX45QJFtw9lvzwFvrwbG0kbutPE,856
235
238
  jaclang/tests/fixtures/has_goodness.jac,sha256=CmhMXiRLCkdrqpGbSm2e7mBf0hCBgCk5s9GQ6gbCjdA,313
236
239
  jaclang/tests/fixtures/hash_init_check.jac,sha256=Yrh3Rmi4SHIbY_c8EjHzcnwXVXas9ufbCAnkdRa3EyQ,205
@@ -286,12 +289,13 @@ jaclang/tests/fixtures/try_finally.jac,sha256=I4bjOZz0vZbY1rQZlPy-RCMYP2-LQwtsSh
286
289
  jaclang/tests/fixtures/tupleunpack.jac,sha256=AP6rbofc0VmsTNxInY6WLGRKWVY6u8ut0uzQX_52QyI,64
287
290
  jaclang/tests/fixtures/tuplytuples.jac,sha256=6qiXn5OV_qn4cqKwROjJ1VuBAh0nbUGpp-5vtH9n_Dg,344
288
291
  jaclang/tests/fixtures/type_info.jac,sha256=4Cw31ef5gny6IS0kLzgeSO-7ArEH1HgFFFip1BGQhZM,316
292
+ jaclang/tests/fixtures/visit_order.jac,sha256=5_U-sJX_TkY9A1ho4ibCr-53pFYRtkl97FfMlhoke3w,260
289
293
  jaclang/tests/fixtures/walker_override.jac,sha256=Ok58ZAgxuV6aECNxYrjbbyAWSiqIbnly3N3O6cD563o,271
290
294
  jaclang/tests/fixtures/walker_update.jac,sha256=_bN3ASAN6LpfIQFfDMRnrx2oteM-ef7OrbE91f2qvrs,463
291
295
  jaclang/tests/fixtures/with_context.jac,sha256=cDA_4YWe5UVmQRgcpktzkZ_zsswQpV_T2Otf_rFnPy8,466
292
296
  jaclang/tests/test_bugs.py,sha256=tBPsIlSPqZDIz4QaScNRT-WdGIdJ0uU-aRBWq1XUZ6o,555
293
297
  jaclang/tests/test_cli.py,sha256=7PYJvJeKKb13yyP0TQ_pHbdRowWN5TI7kG-tNUESbaI,13461
294
- jaclang/tests/test_language.py,sha256=8eOyQeMJrMZbn8XZJqaddaajx4htlUJWvwPM1PTNubE,44376
298
+ jaclang/tests/test_language.py,sha256=w8eRU328MzcB2P42RwYYKd-X6LvDjaQOuJBkdohyGXk,47199
295
299
  jaclang/tests/test_man_code.py,sha256=ZdNarlZVfT_-8Jv3FjLplHw76tsvkCuISyfX3M4qxPg,5027
296
300
  jaclang/tests/test_reference.py,sha256=FISQpZbB8cmRoAeJOFfXUy13WVxykZjpkPSb1OTotfI,3340
297
301
  jaclang/tests/test_settings.py,sha256=TIX5uiu8H9IpZN2__uFiclcdCpBpPpcAwtlEHyFC4kk,1999
@@ -1525,7 +1529,7 @@ jaclang/vendor/typing_extensions-4.12.2.dist-info/METADATA,sha256=BeUQIa8cnYbrjW
1525
1529
  jaclang/vendor/typing_extensions-4.12.2.dist-info/RECORD,sha256=XS4fBVrPI7kaNZ56Ggl2RGa76jySWLqTzcrUpZIQTVM,418
1526
1530
  jaclang/vendor/typing_extensions-4.12.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
1527
1531
  jaclang/vendor/typing_extensions.py,sha256=gwekpyG9DVG3lxWKX4ni8u7nk3We5slG98mA9F3DJQw,134451
1528
- jaclang-0.7.21.dist-info/METADATA,sha256=PHYewc1q1XV9rbxXxH3sxGKUdo4Tp6630L7bONTYsGY,4914
1529
- jaclang-0.7.21.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1530
- jaclang-0.7.21.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
1531
- jaclang-0.7.21.dist-info/RECORD,,
1532
+ jaclang-0.7.23.dist-info/METADATA,sha256=XSXIBvGPoXmAI8OJ17_Xz6-bJAzWKOa6HzHwd1n-zZE,4914
1533
+ jaclang-0.7.23.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
1534
+ jaclang-0.7.23.dist-info/entry_points.txt,sha256=8sMi4Tvi9f8tQDN2QAXsSA2icO27zQ4GgEdph6bNEZM,49
1535
+ jaclang-0.7.23.dist-info/RECORD,,