-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
112 additions
and
111 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,6 @@ | |
// Ok(()) | ||
// } | ||
|
||
fn main() { | ||
fn main() { | ||
todo!("Wright frontend undergoing overhaul"); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
//! The wright programming language crate. This is being re-written from the ground up as of September 2022. | ||
// We want to enforce good stuff by default. | ||
// We want to enforce good stuff by default. | ||
#![deny(missing_copy_implementations, missing_debug_implementations)] | ||
#![deny(rustdoc::broken_intra_doc_links)] | ||
#![warn(missing_docs)] | ||
|
||
/// The version of this copy of Wright. | ||
pub const WRIGHT_VERSION: &str = env!("CARGO_PKG_VERSION"); | ||
|
||
pub mod source_tracking; | ||
pub mod reporting; | ||
pub mod source_tracking; | ||
// pub mod parser; | ||
// pub mod repl; | ||
// pub mod solver; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
//! Labels on pieces of source in a [Diagnostic]. | ||
//! | ||
//! | ||
//! [Diagnostic]: super::Diagnostic |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.