mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
07ac3c3aab
* Add Nushell REPL simulator; Fix bug in overlay add The `nu_repl` function takes an array of strings and processes them as if they were REPL lines entered one by one. This helps to discover bugs due to the state changes between the parse and eval stages. * Fix REPL tests on Windows
10 lines
116 B
Rust
10 lines
116 B
Rust
extern crate nu_test_support;
|
|
|
|
mod nu_repl;
|
|
mod overlays;
|
|
mod parsing;
|
|
mod path;
|
|
mod plugins;
|
|
mod scope;
|
|
mod shell;
|