-
-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking issue for syn 1.0 #687
Comments
FYI @mystor @alexcrichton @SergioBenitez @sgrif. The Syn changes are minor so it should be fine not to bother with the rc versions this time, but I figured I would give some advance notice. The quote changes are potentially interesting. Real release is scheduled for the week of August 12. |
The definition of
I would strongly recommend waiting for |
Thanks for the link! In my opinion that grammar doesn't have enough structure to benefit from a more structured representation than Attribute. Meta are a subset of attributes that are easier to work with in exchange for restricting yourself to a subset of the grammar that is common by convention. Use cases beyond that subset can parse what they need from Attribute.
Noted; I've been considering it but would use a __Nonexhaustive variant instead of waiting because it is effectively the same thing but stable. |
It's sort of the point of rust-lang/rust#57367 (comment) to change the convention (which mainly exists due to language limitations), e.g.:
...into something better (which notably does not embed strings into the EDSL):
The way I'd do it is to be more lazy about pub struct MetaParens {
pub ident: Ident,
pub paren_token: Paren,
pub tokens: TokenStream,
} and then add a way to convert |
It ends up not being a net benefit. Once you've accounted for formats like |
Thanks for championing this @dtolnay, this all sounds great to me! There's two things I was wondering about as well:
I understand the need for this but if this were applied to serde, for example, it'd be pretty disruptive. As a massively used dependency it seems like we should try to bend over backwards pretty hard to see if we can avoid doing breaking changes for as long as possible. Would it be possible to make all the enums of syn non-exhaustive and still preserve the basic ergonomics of what we have today? For example folds would still work, matches would have to return errors but that seems ok, and otherwise I'm not sure how too too disruptive this would be otherwise. I suspect though that this has been thought about, so I'm curious to hear sort of what y'all have been thinking about this.
Why not 1.32.0? (being able to use the 2018 edition seems like it'd be nice?) |
This is true but it's only because serde appears in the public API of so many libraries. By contrast there are almost no libraries with syn in the public API, basically synstructure and a small handful of others. A lot of crates depend on syn but those are all proc macros with only macros in the API where a syn upgrade can be done transparently. Analyzing changes from past releases, having a policy of non-exhaustive everything would not noticeably reduce the rate at which language changes beyond the add-a-variant variety stack up.
We will be using 2018 edition with 1.31. |
Ah ok, that's a good point that it's not just new variants but tweaks to existing ones. If that's the case I think that there's no choice but to plan for eventual new breaking releases. This point is moot, but although I agree that it's less pressing because
Oops, my mistake! |
I released 1.0.0-rc4 and don't have any further changes planned, so if nothing else comes up then this will be the release going out this week, likely Tuesday. |
5: Update proc-macro2, syn, and quote to 1.0 r=taiki-e a=taiki-e Tracking issues: * quote: dtolnay/quote#124 * syn: dtolnay/syn#687 Co-authored-by: Taiki Endo <te316e89@gmail.com>
5: Update proc-macro2, syn, and quote to 1.0 r=taiki-e a=taiki-e Tracking issues: * quote: dtolnay/quote#124 * syn: dtolnay/syn#687 Co-authored-by: Taiki Endo <te316e89@gmail.com>
5: Update proc-macro2, syn, and quote to 1.0 r=taiki-e a=taiki-e Tracking issues: * quote: dtolnay/quote#124 * syn: dtolnay/syn#687 Co-authored-by: Taiki Endo <te316e89@gmail.com>
Current prerelease:
syn-next = "1.0.0-rc4"
Release notes in progress:
Syn is a library for parsing Rust code, largely geared toward use in procedural macros but generally applicable as a Rust parser outside of that too.
Syn was originally a sidequest on the effort to making Serde's derive macros work on stable Rust in 2016, but has since taken off as a foundational library in its own right. These days it appears in support of diverse use cases like:
Excitingly, the fraction of open source Rust projects that rely on Syn is still climbing aggressively (see red line). This reflects how important procedural macros are to the experience we want people to have when working with Rust — empowering everyone to build reliable and efficient software.
This 1.0 release signifies that Syn is a polished and stable library and that it offers a user experience we can stand behind as the way we recommend for all Rustaceans to write procedural macros.
Be aware that the underlying Rust language will continue to evolve. Syn is able to accommodate most kinds of Rust grammar changes via the nonexhaustive enums and
Verbatim
variants in the syntax tree, but we will plan to put out new major versions on a 12 to 24 month cadence to incorporate ongoing language changes as needed.Note: in combination with this release, please see also the release notes for quote 1.0 which resolves multiple longstanding limitations of the quote macro.
Breaking changes
Items
The syntax tree for function signatures has been redesigned. The types
MethodSig
andFnDecl
have been unified into one typeSignature
that is common across all varieties of function signatures.The syntax tree for function arguments has been redesigned. The new type is
FnArg
which represents one argument of a function, associated function, trait function, or foreign function. Arguments of closures are no longer treated asFnArg
and are simply aPat
instead.The
Fields
type now implements IntoIterator, in addition to the previously existing IntoIterator impls on &Fields and &mut Fields. This may require changing.into_iter()
calls to.iter()
when used on a value of type &Fields.The representation of
Item::Macro2
2.0-style declarative macros have been collapsed into a single token stream pending figuring out what the syntax should be in rust-lang/rust#39412.Item::Existential
andImplItem::Existential
have been removed in favor of RFC 2515.Expressions
Expr::Await
is a new variant of expression for postfix.await
syntax per ongoing work on rust-lang/rust#50547.Expr::InPlace
has been removed as a result of RFC 2387.Types
BareFnArgName
has been eliminated in favor ofIdent
for representing the arguments of aType::BareFn
.Patterns
Pat::Or
is a new variant of pattern as specified by RFC 2535.Pat::Type
is a new variant of pattern for type ascription as specified by RFC 2522.Pat::Rest
is a new variant of pattern representing the..
pattern as specified by RFC 2707.The
Pat::Slice
andPat::Tuple
patterns have been redesigned to accomodate RFC 2359.Pat::Ref
has been renamed toPat::Reference
to align withExpr::Reference
andType::Reference
.Tokens
The
Lit::Int
andLit::Float
literal types have been redesigned to represent arbitrarily large numbers and arbitrary suffixes. Rather than.value()
, there is a.base10_digits()
accessor which the caller should parse into the appropriate representation.The types of the token representation of the
self
andSelf
tokens have been renamed fromSelf_
/CapSelf
toSelfValue
/SelfType
respectively. This does not affect you if you are referring to them asToken![self]
andToken![Self]
.The
Lit::Verbatim
literal escape hatch now holds aproc_macro2::Literal
primitive token directly, rather than the previousLitVerbatim
wrapper.Attributes
The
Attribute::interpret_meta
method is removed in favor ofAttribute::parse_meta
which produces a better error.The variants of
Meta
now contain aPath
rather than a singleIdent
as specified by RFC 2103.Function parameters now hold attributes as specified by RFC 2565.
More
The argument of
Path::is_ident
is now taken by reference. The common case of using this method with a string literal will continue to work:path.is_ident("...")
.The type returned by
Punctuated::into_iter
no longer has aP
type parameter, as it only returns sequence elements without punctuation.The
first
,last
, andlast_mut
accessors ofPunctuated
now return the elementT
only, no longer a punctuated pair. The old paired behavior of.first()
can be written as.pairs().next()
,.last()
can be written as.pairs().next_back()
, and.last_mut()
can be written as.pairs_mut().next_back()
.Various uses of
tts
as a field name in the syntax tree have been renamed totokens
to eliminate the nonstandard abbreviation.The text was updated successfully, but these errors were encountered: