mirror of
https://github.com/nushell/nushell.git
synced 2025-07-24 09:16:16 +02:00
* Move run_script to engine * Add which dep and feature to engine * Change unwrap to expect * Add wasm specification * Remove which from default, add specification correctly * Add nu-platform-specifics * Move is_external_cmd to platform_specifics * Add is_external_cmd to host and use it instead of nu_platform directly * Clean up if else logic in is_external_cmd * Bump nu-platform-specifics version * Pass context to print_err * Commit cargo.lock * Move print functions to own module inside nu-engine * Hypocratic change to run windows-nightly again * Add import for Ordering * Move printing of error to host * Move platform specific which functionality to basic host * Allow no use of cmd_name * Fix windows compile issue
23 lines
587 B
Rust
23 lines
587 B
Rust
use crate::{Command, Host, Scope, ShellManager};
|
|
use nu_errors::ShellError;
|
|
use nu_source::Tag;
|
|
use nu_stream::InputStream;
|
|
use parking_lot::Mutex;
|
|
use std::sync::{atomic::AtomicBool, Arc};
|
|
|
|
pub struct RunnableContext {
|
|
pub input: InputStream,
|
|
pub shell_manager: ShellManager,
|
|
pub host: Arc<Mutex<Box<dyn Host>>>,
|
|
pub ctrl_c: Arc<AtomicBool>,
|
|
pub current_errors: Arc<Mutex<Vec<ShellError>>>,
|
|
pub scope: Scope,
|
|
pub name: Tag,
|
|
}
|
|
|
|
impl RunnableContext {
|
|
pub fn get_command(&self, name: &str) -> Option<Command> {
|
|
self.scope.get_command(name)
|
|
}
|
|
}
|