From 7199a05cb91c8593aa24687aa3432ee23dc49dbc Mon Sep 17 00:00:00 2001 From: James Johnson Date: Mon, 13 Jul 2020 07:00:24 -0700 Subject: [PATCH] Allows strings in ext attr value list --- src/attribute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/attribute.rs b/src/attribute.rs index 0a70450..4235261 100644 --- a/src/attribute.rs +++ b/src/attribute.rs @@ -6,7 +6,7 @@ use crate::literal::StringLit; pub type ExtendedAttributeList<'a> = Bracketed, term!(,)>>; /// Matches comma separated identifier list -pub type IdentifierList<'a> = Punctuated, term!(,)>; +pub type IdentifierList<'a> = Punctuated, term!(,)>; ast_types! { /// Parses on of the forms of attribute