Add NOVA — capability + effect-typed research-preview language - #529
Open
Hesara2003 wants to merge 1 commit into
Open
Add NOVA — capability + effect-typed research-preview language#529Hesara2003 wants to merge 1 commit into
Hesara2003 wants to merge 1 commit into
Conversation
NOVA (ieeecsopen/NOVA) unifies object-capability security and row-typed effect systems: authority is an unforgeable token passed explicitly, and a function's effects are checked as part of its type signature, so a closure cannot silently launder captured capability into a pure-typed context. 0.2 research preview — the frontend type/effect checker and a reference interpreter are implemented and tested (49-test conformance suite); the platform-scale features in its design docs are not.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds NOVA to the N section (alphabetical, between North-Hollywood Python and Nosica) and bumps the N-section and total counts.
NOVA unifies object-capability security and row-typed effect systems: authority to touch the outside world is an unforgeable token passed explicitly (never an ambient
import), and a function's effects are part of its checked type signature — so a closure that captures a capability can't be passed where a pure function is expected (checked statically, not just documented).Honest status disclosure since this is early: it's a 0.2 research preview. What's implemented and tested is the frontend (lexer/parser/type inference/effect+capability checker) and a reference interpreter, with a 49-test conformance suite and CI. A first-order native C backend exists for a subset of the language. The project's docs also describe a much larger platform vision (distributed runtime, WASM frontend, etc.) that is explicitly marked design-only, not implemented — the README and
docs/known-issues.mdare direct about the gap.