Skip to content

Commit

Permalink
Improve messages for alias error messages (#500)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Oct 20, 2019
1 parent 49ab423 commit 83f40aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/compilation_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ impl<'a> Display for CompilationError<'a> {
AliasShadowsRecipe { alias, recipe_line } => {
writeln!(
f,
"Alias `{}` defined on `{}` shadows recipe defined on `{}`",
"Alias `{}` defined on line {} shadows recipe `{}` defined on line {}",
alias,
self.line.ordinal(),
alias,
recipe_line.ordinal(),
)?;
}
Expand Down Expand Up @@ -85,7 +86,7 @@ impl<'a> Display for CompilationError<'a> {
DuplicateAlias { alias, first } => {
writeln!(
f,
"Alias `{}` first defined on line `{}` is redefined on line `{}`",
"Alias `{}` first defined on line {} is redefined on line {}",
alias,
first.ordinal(),
self.line.ordinal(),
Expand Down
4 changes: 2 additions & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ integration_test! {
name: duplicate_alias,
justfile: "alias foo := bar\nalias foo := baz\n",
stderr: "
error: Alias `foo` first defined on line `1` is redefined on line `2`
error: Alias `foo` first defined on line 1 is redefined on line 2
|
2 | alias foo := baz
| ^^^
Expand All @@ -261,7 +261,7 @@ integration_test! {
name: alias_shadows_recipe,
justfile: "bar:\n echo bar\nalias foo := bar\nfoo:\n echo foo",
stderr: "
error: Alias `foo` defined on `3` shadows recipe defined on `4`
error: Alias `foo` defined on line 3 shadows recipe `foo` defined on line 4
|
3 | alias foo := bar
| ^^^
Expand Down

0 comments on commit 83f40aa

Please sign in to comment.