mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
Reorganize repl modules
This commit is contained in:
parent
9f498add60
commit
a6c1667d37
9 changed files with 400 additions and 359 deletions
|
@ -3,7 +3,8 @@ use std::io::Write;
|
|||
use std::path::PathBuf;
|
||||
use std::process::{Command, ExitStatus, Stdio};
|
||||
|
||||
use roc_repl_cli::{TIPS, WELCOME_MESSAGE};
|
||||
use roc_repl_cli::repl_state::TIPS;
|
||||
use roc_repl_cli::WELCOME_MESSAGE;
|
||||
use roc_test_utils::assert_multiline_str_eq;
|
||||
|
||||
const ERROR_MESSAGE_START: char = '─';
|
||||
|
|
|
@ -5,6 +5,9 @@ extern crate lazy_static;
|
|||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
||||
#[cfg(test)]
|
||||
mod state;
|
||||
|
||||
#[cfg(all(test, not(feature = "wasm")))]
|
||||
mod cli;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue