Merge pull request #18715 from aibaars/ungram-asm-option

Fix AsmOption rule in rust.ungram
This commit is contained in:
Lukas Wirth 2024-12-18 14:22:05 +00:00 committed by GitHub
commit 27fac08c82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -414,7 +414,7 @@ AsmClobberAbi = 'clobber_abi' '(' ('@string' (',' '@string')* ','?) ')'
// option := "pure" / "nomem" / "readonly" / "preserves_flags" / "noreturn" / "nostack" / "att_syntax" / "raw" // option := "pure" / "nomem" / "readonly" / "preserves_flags" / "noreturn" / "nostack" / "att_syntax" / "raw"
AsmOption = 'pure' | 'nomem' | 'readonly' | 'preserves_flags' | 'noreturn' | 'nostack' | 'att_syntax' | 'raw' | 'may_unwind' AsmOption = 'pure' | 'nomem' | 'readonly' | 'preserves_flags' | 'noreturn' | 'nostack' | 'att_syntax' | 'raw' | 'may_unwind'
// options := "options(" option *("," option) [","] ")" // options := "options(" option *("," option) [","] ")"
AsmOptions = 'options' '(' AsmOption *(',' AsmOption) ','? ')' AsmOptions = 'options' '(' (AsmOption (',' AsmOption)*) ','? ')'
AsmLabel = 'label' BlockExpr AsmLabel = 'label' BlockExpr
AsmSym = 'sym' Path AsmSym = 'sym' Path
AsmConst = 'const' Expr AsmConst = 'const' Expr

View file

@ -211,8 +211,6 @@ pub struct AsmOptions {
pub(crate) syntax: SyntaxNode, pub(crate) syntax: SyntaxNode,
} }
impl AsmOptions { impl AsmOptions {
#[inline]
pub fn asm_option(&self) -> Option<AsmOption> { support::child(&self.syntax) }
#[inline] #[inline]
pub fn asm_options(&self) -> AstChildren<AsmOption> { support::children(&self.syntax) } pub fn asm_options(&self) -> AstChildren<AsmOption> { support::children(&self.syntax) }
#[inline] #[inline]