dsl41 0.1.0__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.
dsl41/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """dsl41: AutoSys->Stonebranch migration compiler.
2
+
3
+ Module map (implementation order per CLAUDE.md; all ten phases built):
4
+ ast_jil - JIL statement scanner + AST + preserve/canonical renderers (docs/jil-statement-syntax.md)
5
+ conditions - condition-expression parsing via grammars/condition.lark -> Cond models
6
+ ir - IR-F Pydantic models + AST->IR-F lowering (docs/ir-design.md ss3-4)
7
+ lint - Violation model + rules L001..L015 (docs/ir-design.md ss9)
8
+ derive - IR-F -> IR-G analysis passes (docs/ir-design.md ss5)
9
+ viz - IR-G -> Mermaid
10
+ oracle - discrete-event AutoSys semantics interpreter (docs/ir-design.md ss7)
11
+ equiv - canonical form + equivalence tiers a/b/c (docs/ir-design.md ss6)
12
+ backend_uc - UC twin model + edge classification + migration report
13
+ (record emission PENDING: U3 -- see BlockedOnU3)
14
+ uc_oracle - minimal UC workflow interpreter + trace comparator
15
+ (the P-Mxx expected-divergence pairs, stonebranch Part IV)
16
+ dsl - builder surface (job/box/sequence/parallel) + decompiler
17
+ cli - typer entry points (lint/equiv/report/viz/decompile)
18
+ """