-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude comparison operators from modifier logic (#6370)
* Exclude comparison operators from modifier logic * CLI for SpanTree debug_print
- Loading branch information
Showing
5 changed files
with
76 additions
and
13 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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
//! Command-line debug tool for `SpanTree`. Accepts a single line of Enso source code as an | ||
//! argument, and prints a debug representation of the resulting `SpanTree`. | ||
// === Standard Linter Configuration === | ||
#![deny(non_ascii_idents)] | ||
#![warn(unsafe_code)] | ||
#![allow(clippy::bool_to_int_with_if)] | ||
#![allow(clippy::let_and_return)] | ||
// === Non-Standard Linter Configuration === | ||
#![warn(missing_docs)] | ||
#![warn(trivial_casts)] | ||
#![warn(trivial_numeric_casts)] | ||
#![warn(unused_import_braces)] | ||
#![warn(unused_qualifications)] | ||
#![warn(missing_copy_implementations)] | ||
#![warn(missing_debug_implementations)] | ||
|
||
use span_tree::generate; | ||
use span_tree::generate::SpanTreeGenerator; | ||
use span_tree::SpanTree; | ||
|
||
|
||
|
||
// =================== | ||
// === Entry point === | ||
// =================== | ||
|
||
#[allow(missing_docs)] | ||
pub fn main() { | ||
let mut args = std::env::args(); | ||
let _ = args.next().unwrap(); | ||
let code = args.next().unwrap(); | ||
|
||
let parser = parser::Parser::new(); | ||
let ast = parser.parse_line_ast(&code).unwrap(); | ||
let tree: SpanTree = ast.generate_tree(&generate::context::Empty).unwrap(); | ||
let tree = tree.debug_print(&code); | ||
println!("{tree}"); | ||
} |
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