Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OneOf shape to fix else #7385

Merged
merged 3 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Add OneOf shape to fix else
  • Loading branch information
sophiajt committed Dec 7, 2022
commit 02a155e64ac2257e62d7aacddfa03ed5bc3fc592
8 changes: 7 additions & 1 deletion crates/nu-command/src/core_commands/if_.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ impl Command for If {
)
.optional(
"else_expression",
SyntaxShape::Keyword(b"else".to_vec(), Box::new(SyntaxShape::Expression)),
SyntaxShape::Keyword(
b"else".to_vec(),
Box::new(SyntaxShape::OneOf(vec![
SyntaxShape::Block,
SyntaxShape::Expression,
])),
),
"expression or block to run if check fails",
)
.category(Category::Core)
Expand Down
26 changes: 25 additions & 1 deletion crates/nu-parser/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,27 @@ pub fn parse_multispan_value(

(arg, error)
}
SyntaxShape::OneOf(shapes) => {
for shape in shapes.iter() {
if let (s, None) = parse_multispan_value(
working_set,
spans,
spans_idx,
shape,
expand_aliases_denylist,
) {
return (s, None);
}
}
let span = spans[*spans_idx];
(
Expression::garbage(span),
Some(ParseError::Expected(
format!("non-block value: {}", shape),
span,
)),
)
}
SyntaxShape::Expression => {
trace!("parsing: expression");

Expand Down Expand Up @@ -4252,7 +4273,10 @@ pub fn parse_value(
} else {
return (
Expression::garbage(span),
Some(ParseError::Expected("non-block value".into(), span)),
Some(ParseError::Expected(
format!("non-block value: {}", shape),
span,
)),
);
}
}
Expand Down
9 changes: 9 additions & 0 deletions crates/nu-protocol/src/syntax_shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ pub enum SyntaxShape {
/// A custom shape with custom completion logic
Custom(Box<SyntaxShape>, DeclId),

/// One of a list of possible items, checked in order
OneOf(Vec<SyntaxShape>),

/// Nothing
Nothing,
}
Expand Down Expand Up @@ -132,6 +135,7 @@ impl SyntaxShape {
SyntaxShape::Keyword(_, expr) => expr.to_type(),
SyntaxShape::MathExpression => Type::Any,
SyntaxShape::Number => Type::Number,
SyntaxShape::OneOf(_) => Type::Any,
SyntaxShape::Operator => Type::Any,
SyntaxShape::Range => Type::Any,
SyntaxShape::Record => Type::Record(vec![]), // FIXME: What role should fields play in the Record type?
Expand Down Expand Up @@ -191,6 +195,11 @@ impl Display for SyntaxShape {
SyntaxShape::Boolean => write!(f, "bool"),
SyntaxShape::Error => write!(f, "error"),
SyntaxShape::Custom(x, _) => write!(f, "custom<{}>", x),
SyntaxShape::OneOf(list) => {
let arg_vec: Vec<_> = list.iter().map(|x| x.to_string()).collect();
let arg_string = arg_vec.join(", ");
write!(f, "one_of({})", arg_string)
}
SyntaxShape::Nothing => write!(f, "nothing"),
}
}
Expand Down
8 changes: 8 additions & 0 deletions src/tests/test_conditionals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,11 @@ fn if_elseif3() -> TestResult {
fn if_elseif4() -> TestResult {
run_test("if 2 > 3 { 5 } else if 6 < 7 { 4 } else { 8 } ", "4")
}

#[test]
fn mutation_in_else() -> TestResult {
run_test(
"mut x = 100; if 2 > 3 { $x = 200 } else { $x = 300 }; $x ",
"300",
)
}