ibex-runtime 0.3.0 → 0.4.0
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.
- checksums.yaml +4 -4
- data/README.md +7 -2
- data/lib/ibex/runtime/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1693b23297526d97572f41b122eb1d5084c401af1a342ae6513046abf11e99ae
|
|
4
|
+
data.tar.gz: d0c6d2664a388dd1fd2232001865c63af62c371cbb348e15f14d4ea934384135
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e0ec460df731de3369a0523acb57f8afa25e529bd251aa4ecab434b9c0a711ed3c92904969394fa1ad19a7290404182d73124b0346c78ac65343cf7e849b8fd
|
|
7
|
+
data.tar.gz: 33bec07cb795bbdaec36849b05b22648833a49d2ff478577e679a2e7b225b8a2d589b85c507ac59054909a307e0d806d27d035eb1dc34cf256bcdfbfddb74967
|
data/README.md
CHANGED
|
@@ -27,8 +27,8 @@ R001: `HOLD` — [`awaiting_independent_review`](docs/error-ux-review-status-v1.
|
|
|
27
27
|
<!-- r001-review-status:end -->
|
|
28
28
|
|
|
29
29
|
<!-- type-stats:start -->
|
|
30
|
-
The current whole-library `steep stats` result is
|
|
31
|
-
The generated signature tree contains
|
|
30
|
+
The current whole-library `steep stats` result is 29,778 typed calls and 2,906 untyped calls out of 32,724 (91.0% typed).
|
|
31
|
+
The generated signature tree contains 506 explicit `untyped` occurrences across 41 files.
|
|
32
32
|
<!-- type-stats:end -->
|
|
33
33
|
|
|
34
34
|
## Install
|
|
@@ -99,6 +99,7 @@ convenient. Use `--check` in CI to detect stale generated output.
|
|
|
99
99
|
| --- | --- | --- |
|
|
100
100
|
| Compatible mode | Existing racc grammars and conservative migrations | Stable baseline |
|
|
101
101
|
| Extended mode | EBNF, imports, generated lexers, trees, types, and tooling | Preview; explicit opt-in |
|
|
102
|
+
| `ibex impact` | Grammar propagation, automaton, action metadata, and coverage review | Preview; read-only |
|
|
102
103
|
| Browser playground and incremental CST sessions | Local analysis and evaluation | Preview/Experimental; bounded |
|
|
103
104
|
|
|
104
105
|
The default frontend remains unchanged unless a grammar opts into
|
|
@@ -108,6 +109,10 @@ The default frontend remains unchanged unless a grammar opts into
|
|
|
108
109
|
[maturity audit](https://ydah.github.io/ibex/docs/maturity/) before adopting a
|
|
109
110
|
Preview or Experimental surface.
|
|
110
111
|
|
|
112
|
+
Use [`ibex impact`](docs/impact.md) to review where a changed nonterminal can
|
|
113
|
+
propagate. Its reports are deterministic and read-only; nullable boundaries and
|
|
114
|
+
source-only action references remain explicit limitations.
|
|
115
|
+
|
|
111
116
|
IELR is also explicit: `--algorithm=ielr` uses the conservative partition
|
|
112
117
|
strategy by default, while `--ielr-strategy=direct` enables the experimental
|
|
113
118
|
LR(0)-based construction. Direct IELR is profiled and reviewable, but it is not
|
data/lib/ibex/runtime/version.rb
CHANGED