mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00: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
9 lines
116 B
Rust
9 lines
116 B
Rust
extern crate nu_test_support;
|
|
|
|
mod nu_repl;
|
|
mod overlays;
|
|
mod parsing;
|
|
mod path;
|
|
mod plugins;
|
|
mod scope;
|
|
mod shell;
|