Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions prqlc/prqlc/src/ir/rq/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,3 @@ pub enum ExprKind {

Array(Vec<Expr>),
}

#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize, JsonSchema)]
pub enum UnOp {
Neg,
Not,
}
2 changes: 1 addition & 1 deletion prqlc/prqlc/src/ir/rq/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use enum_as_inner::EnumAsInner;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

pub use expr::{Expr, ExprKind, UnOp};
pub use expr::{Expr, ExprKind};
use expr::{InterpolateItem, Range, SwitchCase};
pub use fold::*;
pub use ids::*;
Expand Down
Loading