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

Fix function argument count mismatch error message #2231

Merged
merged 2 commits into from
Jul 7, 2024
Merged
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
2 changes: 1 addition & 1 deletion src/compile_error_kind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub(crate) enum CompileErrorKind<'src> {
FunctionArgumentCountMismatch {
function: &'src str,
found: usize,
expected: Range<usize>,
expected: RangeInclusive<usize>,
},
Include,
InconsistentLeadingWhitespace {
Expand Down
16 changes: 8 additions & 8 deletions src/function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ pub(crate) fn get(name: &str) -> Option<Function> {
}

impl Function {
pub(crate) fn argc(&self) -> Range<usize> {
pub(crate) fn argc(&self) -> RangeInclusive<usize> {
match *self {
Nullary(_) => 0..0,
Unary(_) => 1..1,
UnaryOpt(_) => 1..2,
UnaryPlus(_) => 1..usize::MAX,
Binary(_) => 2..2,
BinaryPlus(_) => 2..usize::MAX,
Ternary(_) => 3..3,
Nullary(_) => 0..=0,
Unary(_) => 1..=1,
UnaryOpt(_) => 1..=2,
UnaryPlus(_) => 1..=usize::MAX,
Binary(_) => 2..=2,
BinaryPlus(_) => 2..=usize::MAX,
Ternary(_) => 3..=3,
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2568,7 +2568,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "arch",
found: 1,
expected: 0..0,
expected: 0..=0,
},
}

Expand All @@ -2582,7 +2582,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "env_var",
found: 0,
expected: 1..1,
expected: 1..=1,
},
}

Expand All @@ -2596,7 +2596,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "env",
found: 3,
expected: 1..2,
expected: 1..=2,
},
}

Expand All @@ -2610,7 +2610,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "env",
found: 0,
expected: 1..2,
expected: 1..=2,
},
}

Expand All @@ -2624,7 +2624,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "env_var_or_default",
found: 1,
expected: 2..2,
expected: 2..=2,
},
}

Expand All @@ -2638,7 +2638,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "join",
found: 1,
expected: 2..usize::MAX,
expected: 2..=usize::MAX,
},
}

Expand All @@ -2652,7 +2652,7 @@ mod tests {
kind: FunctionArgumentCountMismatch {
function: "replace",
found: 1,
expected: 3..3,
expected: 3..=3,
},
}
}
24 changes: 11 additions & 13 deletions src/range_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@ pub(crate) trait RangeExt<T> {

pub(crate) struct DisplayRange<T>(T);

impl Display for DisplayRange<&Range<usize>> {
impl Display for DisplayRange<&RangeInclusive<usize>> {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
if self.0.start == self.0.end {
write!(f, "0")?;
} else if self.0.start == self.0.end - 1 {
write!(f, "{}", self.0.start)?;
} else if self.0.end == usize::MAX {
write!(f, "{} or more", self.0.start)?;
if self.0.start() == self.0.end() {
write!(f, "{}", self.0.start())?;
} else if *self.0.end() == usize::MAX {
write!(f, "{} or more", self.0.start())?;
} else {
write!(f, "{} to {}", self.0.start, self.0.end - 1)?;
write!(f, "{} to {}", self.0.start(), self.0.end())?;
}
Ok(())
}
Expand Down Expand Up @@ -76,10 +74,10 @@ mod tests {
assert!(!(1..1).contains(&1));
assert!((1..1).is_empty());
assert!((5..5).is_empty());
assert_eq!((1..1).display().to_string(), "0");
assert_eq!((1..2).display().to_string(), "1");
assert_eq!((5..6).display().to_string(), "5");
assert_eq!((5..10).display().to_string(), "5 to 9");
assert_eq!((1..usize::MAX).display().to_string(), "1 or more");
assert_eq!((0..=0).display().to_string(), "0");
assert_eq!((1..=1).display().to_string(), "1");
assert_eq!((5..=5).display().to_string(), "5");
assert_eq!((5..=9).display().to_string(), "5 to 9");
assert_eq!((1..=usize::MAX).display().to_string(), "1 or more");
}
}
18 changes: 18 additions & 0 deletions tests/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1050,3 +1050,21 @@ fn is_dependency() {
.stdout("beta false\ngamma true\n")
.run();
}

#[test]
fn unary_argument_count_mismamatch_error_message() {
Test::new()
.justfile("x := datetime()")
.args(["--evaluate"])
.stderr(
"
error: Function `datetime` called with 0 arguments but takes 1
——▶ justfile:1:6
1 │ x := datetime()
│ ^^^^^^^^
",
)
.status(EXIT_FAILURE)
.run();
}