Skip to content

Commit

Permalink
Merge branch 'dev-test-command'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed Sep 15, 2024
2 parents 7480b71 + a9a378e commit e2c7da1
Show file tree
Hide file tree
Showing 18 changed files with 364 additions and 339 deletions.
2 changes: 1 addition & 1 deletion src/elements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ pub mod word;
pub mod subscript;
pub mod substitution;
pub mod subword;
pub mod arithmetic_expr;
pub mod expr;

use self::io::pipe::Pipe;
2 changes: 1 addition & 1 deletion src/elements/command/arithmetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use crate::{ShellCore, Feeder};
use super::{Command, Redirect};
use crate::elements::arithmetic_expr::ArithmeticExpr;
use crate::elements::expr::arithmetic::ArithmeticExpr;

#[derive(Debug, Clone)]
pub struct ArithmeticCommand {
Expand Down
2 changes: 1 addition & 1 deletion src/elements/command/for.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::{error_message, ShellCore, Feeder, Script};
use super::{Command, Redirect};
use crate::elements::command;
use crate::elements::word::Word;
use crate::elements::arithmetic_expr::ArithmeticExpr;
use crate::elements::expr::arithmetic::ArithmeticExpr;
use std::sync::atomic::Ordering::Relaxed;

#[derive(Debug, Clone)]
Expand Down
Loading

0 comments on commit e2c7da1

Please sign in to comment.