Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 2 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ each consumer are independent — a fix that aligns the verifier with one
language's invariants says nothing about the other.

Canonical disambiguation:
link:https://github.com/hyperpolymath/nextgen-languages/blob/main/docs/disambiguation/ephapax-vs-affinescript.md[nextgen-languages/docs/disambiguation/ephapax-vs-affinescript.md].
link:https://github.com/hyperpolymath/nextgen-languages/blob/main/docs/disambiguation/ephapax-vs-affinescript.md[ephapax vs affinescript — disambiguation doc (in `hyperpolymath/nextgen-languages`)].
====

**Progressive type safety for WebAssembly linear memory — checked L1-L10 core, 0 believe_me in the checked proof package.**
Expand Down
1 change: 1 addition & 0 deletions tests/aspect/claim-envelope.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ const ALLOWLIST_FRAGMENTS = [
"typell/",
"vql-ut/",
"echidna/",
"nextgen-languages/",
];

// Skip bare filenames without a directory part — those are conventional
Expand Down
4 changes: 4 additions & 0 deletions tests/aspect/security-envelope.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@ if (!badgeClaimsZero) {
let src = readFileSync(path, "utf8");
// Strip block comments {- ... -} (non-nested, conservative)
src = src.replace(/\{-[\s\S]*?-\}/g, "");
// Strip Idris2 docstrings ||| ... to end of line (badge claims like
// "Total, no `believe_me`, no `assert_total`" live in docstrings and
// describe what's *absent* — not actual code uses).
src = src.replace(/\|\|\|[^\n]*/g, "");
// Strip line comments -- ... to end of line
src = src.replace(/--[^\n]*/g, "");
for (const tok of Object.keys(offenders)) {
Expand Down
Loading