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
4 changes: 0 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,6 @@ Contributors should:

---

Frontend syntax changes must update [the Alpha grammar and token inventory](spec/README.md)
and its positive/negative fixtures. Run `cargo test --locked -p lexer -p parser --jobs 2`
for backend-independent frontend tests, then the workspace tests for driver and codegen coverage.

## 9. Pull Request Guidelines

A PR should include:
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,3 @@ Wave is developed in public with support from individuals and organizations. You
</p>

Thank you to everyone who contributes code, documentation, testing, funding, or time to Wave.

The [Alpha language contract](spec/README.md) defines the grammar, numeric literals,
token status and source-location conventions checked by frontend conformance tests.
2 changes: 1 addition & 1 deletion front/lexer/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ pub enum TokenType {
}

impl TokenType {
/// Reserved spellings have no executable Alpha grammar production.
/// These reserved spellings are not implemented.
pub fn reserved_spelling(&self) -> Option<&'static str> {
match self {
Self::Module => Some("module"),
Expand Down
2 changes: 1 addition & 1 deletion front/parser/tests/alpha_frontend.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Alpha grammar regressions: malformed source must never be silently accepted.
//! Parser regressions: malformed source must never be silently accepted.
use lexer::Lexer;
use parser::ast::{ASTNode, Expression, Literal};
use parser::generics::monomorphize_generics;
Expand Down
94 changes: 0 additions & 94 deletions front/parser/tests/grammar_contract.rs

This file was deleted.

151 changes: 0 additions & 151 deletions spec/README.md

This file was deleted.

Loading
Loading