Fix unexport syntax conflicts (#2158)

This commit is contained in:
Casey Rodarmor 2024-06-14 12:39:34 -07:00 committed by GitHub
parent e6c37aacd1
commit dd9792571b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 2 deletions

View File

@ -340,9 +340,13 @@ impl<'run, 'src> Parser<'run, 'src> {
self.presume_keyword(Keyword::Export)?; self.presume_keyword(Keyword::Export)?;
items.push(Item::Assignment(self.parse_assignment(true)?)); items.push(Item::Assignment(self.parse_assignment(true)?));
} }
Some(Keyword::Unexport) => { Some(Keyword::Unexport)
if self.next_are(&[Identifier, Identifier, Eof])
|| self.next_are(&[Identifier, Identifier, Eol]) =>
{
self.presume_keyword(Keyword::Unexport)?; self.presume_keyword(Keyword::Unexport)?;
let name = self.parse_name()?; let name = self.parse_name()?;
self.expect_eol()?;
items.push(Item::Unexport { name }); items.push(Item::Unexport { name });
} }
Some(Keyword::Import) Some(Keyword::Import)

View File

@ -99,6 +99,28 @@ fn unexport_doesnt_override_local_recipe_export() {
) )
.args(["recipe", "value"]) .args(["recipe", "value"])
.stdout("variable: value\n") .stdout("variable: value\n")
.status(0) .run();
}
#[test]
fn unexport_does_not_conflict_with_recipe_syntax() {
Test::new()
.justfile(
"
unexport foo:
@echo {{foo}}
",
)
.args(["unexport", "bar"])
.stdout("bar\n")
.run();
}
#[test]
fn unexport_does_not_conflict_with_assignment_syntax() {
Test::new()
.justfile("unexport := 'foo'")
.args(["--evaluate", "unexport"])
.stdout("foo")
.run(); .run();
} }