schala/schala-repl/src/directives.rs

69 lines
2.6 KiB
Rust
Raw Normal View History

2021-11-24 23:51:30 -08:00
use crate::{command_tree::CommandTree, directive_actions::DirectiveAction};
2021-10-14 02:08:32 -07:00
pub fn directives_from_pass_names(pass_names: &[String]) -> CommandTree {
2021-10-07 01:19:35 -07:00
let passes_directives: Vec<CommandTree> = pass_names
.iter()
.map(|pass_name| {
if pass_name == "parsing" {
CommandTree::nonterm(
pass_name,
None,
vec![
CommandTree::nonterm_no_further_tab_completions("compact", None),
CommandTree::nonterm_no_further_tab_completions("expanded", None),
CommandTree::nonterm_no_further_tab_completions("trace", None),
],
)
} else {
CommandTree::nonterm_no_further_tab_completions(pass_name, None)
}
})
.collect();
CommandTree::Top(get_list(&passes_directives, true))
2019-06-05 02:48:45 -07:00
}
2019-05-22 03:32:00 -07:00
2021-10-14 02:08:32 -07:00
fn get_list(passes_directives: &[CommandTree], include_help: bool) -> Vec<CommandTree> {
2021-10-07 01:19:35 -07:00
use DirectiveAction::*;
2019-06-05 02:48:45 -07:00
2021-10-07 01:19:35 -07:00
vec![
CommandTree::terminal("exit", Some("exit the REPL"), vec![], QuitProgram),
2021-10-14 00:56:01 -07:00
//TODO there should be an alias for this
2021-10-07 01:19:35 -07:00
CommandTree::terminal("quit", Some("exit the REPL"), vec![], QuitProgram),
CommandTree::terminal(
"help",
Some("Print this help message"),
2021-11-24 23:51:30 -08:00
if include_help { get_list(passes_directives, false) } else { vec![] },
2021-10-07 01:19:35 -07:00
Help,
),
CommandTree::nonterm(
"debug",
Some("Configure debug information"),
vec![
CommandTree::terminal(
"list-passes",
Some("List all registered compiler passes"),
vec![],
ListPasses,
),
CommandTree::nonterm(
"total-time",
None,
vec![
2021-10-14 02:20:11 -07:00
CommandTree::terminal("on", None, vec![], TotalTime(true)),
CommandTree::terminal("off", None, vec![], TotalTime(false)),
2021-10-07 01:19:35 -07:00
],
),
CommandTree::nonterm(
"stage-times",
Some("Computation time per-stage"),
vec![
2021-10-14 02:20:11 -07:00
CommandTree::terminal("on", None, vec![], StageTime(true)),
CommandTree::terminal("off", None, vec![], StageTime(false)),
2021-10-07 01:19:35 -07:00
],
),
],
),
2021-11-24 23:51:30 -08:00
CommandTree::terminal("doc", Some("Get language-specific help for an item"), vec![], Doc),
2021-10-07 01:19:35 -07:00
]
2019-05-22 03:32:00 -07:00
}