change the syntax to set the type of tags

This commit is contained in:
Moritz Hölting 2025-03-31 22:59:29 +02:00
parent f808fef3f1
commit ab76b1d43e
3 changed files with 24 additions and 18 deletions

View File

@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Change the syntax to set the type of a tag from `tag "[name]" of "[type]"` to `tag<"[type]"> "[name]"`
- Remove the keyword `of`
- Option to deduplicate source files during serialization when using `SerdeWrapper` - Option to deduplicate source files during serialization when using `SerdeWrapper`
### Removed ### Removed

View File

@ -48,7 +48,6 @@ pub enum KeywordKind {
From, From,
Import, Import,
Tag, Tag,
Of,
Replace, Replace,
Int, Int,
Bool, Bool,
@ -114,7 +113,6 @@ impl KeywordKind {
Self::From => "from", Self::From => "from",
Self::Import => "import", Self::Import => "import",
Self::Tag => "tag", Self::Tag => "tag",
Self::Of => "of",
Self::Replace => "replace", Self::Replace => "replace",
Self::Int => "int", Self::Int => "int",
Self::Bool => "bool", Self::Bool => "bool",

View File

@ -253,7 +253,7 @@ impl SourceElement for Import {
/// ///
/// ``` ebnf /// ``` ebnf
/// TagDeclaration: /// TagDeclaration:
/// 'tag' StringLiteral ('of' StringLiteral)? 'replace'? '[' (StringLiteral (',' StringLiteral)*)? ']' /// 'tag' ('<' StringLiteral '>')? StringLiteral 'replace'? '[' (StringLiteral (',' StringLiteral)*)? ']'
/// ; /// ;
/// ``` /// ```
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
@ -262,9 +262,9 @@ pub struct Tag {
#[get = "pub"] #[get = "pub"]
tag_keyword: Keyword, tag_keyword: Keyword,
#[get = "pub"] #[get = "pub"]
name: StringLiteral, of_type: Option<(Punctuation, StringLiteral, Punctuation)>,
#[get = "pub"] #[get = "pub"]
of_type: Option<(Keyword, StringLiteral)>, name: StringLiteral,
#[get = "pub"] #[get = "pub"]
replace: Option<Keyword>, replace: Option<Keyword>,
#[get = "pub"] #[get = "pub"]
@ -278,15 +278,15 @@ impl Tag {
self, self,
) -> ( ) -> (
Keyword, Keyword,
Option<(Punctuation, StringLiteral, Punctuation)>,
StringLiteral, StringLiteral,
Option<(Keyword, StringLiteral)>,
Option<Keyword>, Option<Keyword>,
DelimitedList<StringLiteral>, DelimitedList<StringLiteral>,
) { ) {
( (
self.tag_keyword, self.tag_keyword,
self.name,
self.of_type, self.of_type,
self.name,
self.replace, self.replace,
self.entries, self.entries,
) )
@ -299,7 +299,7 @@ impl Tag {
self.of_type self.of_type
.as_ref() .as_ref()
.map_or(TagType::Function, |(_, tag_type)| { .map_or(TagType::Function, |(_, tag_type, _)| {
match tag_type.str_content().as_ref() { match tag_type.str_content().as_ref() {
"function" => TagType::Function, "function" => TagType::Function,
"block" => TagType::Block, "block" => TagType::Block,
@ -419,18 +419,24 @@ impl Parser<'_> {
// eat the tag keyword // eat the tag keyword
self.forward(); self.forward();
let of_type = match self.stop_at_significant() {
Reading::Atomic(Token::Punctuation(punc)) if punc.punctuation == '<' => {
// eat the open bracket
self.forward();
let of_type = self.parse_string_literal(handler)?;
// eat the close bracket
let closing = self.parse_punctuation('>', true, handler)?;
Some((punc, of_type, closing))
}
_ => None,
};
// parse the name // parse the name
let name = self.parse_string_literal(handler)?; let name = self.parse_string_literal(handler)?;
let of_type = self
.try_parse(|parser| {
let of_keyword = parser.parse_keyword(KeywordKind::Of, &VoidHandler)?;
let of_type = parser.parse_string_literal(handler)?;
Ok((of_keyword, of_type))
})
.ok();
let replace = self let replace = self
.try_parse(|parser| parser.parse_keyword(KeywordKind::Replace, &VoidHandler)) .try_parse(|parser| parser.parse_keyword(KeywordKind::Replace, &VoidHandler))
.ok(); .ok();
@ -444,8 +450,8 @@ impl Parser<'_> {
Ok(Declaration::Tag(Tag { Ok(Declaration::Tag(Tag {
tag_keyword, tag_keyword,
name,
of_type, of_type,
name,
replace, replace,
entries, entries,
})) }))