<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libsyntax_ext/deriving/generic/ty.rs, branch 1.27.2</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.27.2</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.27.2'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2018-04-06T08:46:26+00:00</updated>
<entry>
<title>Use `Span` instead of `SyntaxContext` in `Ident`</title>
<updated>2018-04-06T08:46:26+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2018-03-17T23:57:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=baae274fb72c91dbee441e20622cffdc218bdcb5'/>
<id>urn:sha1:baae274fb72c91dbee441e20622cffdc218bdcb5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add GenericParam, refactor Generics in ast, hir, rustdoc</title>
<updated>2017-12-21T12:38:10+00:00</updated>
<author>
<name>Jonas Platte</name>
<email>jplatte+git@posteo.de</email>
</author>
<published>2017-10-16T19:07:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=78493ed21aaeb20a8d5f7bd08f26c0c9fd496ed4'/>
<id>urn:sha1:78493ed21aaeb20a8d5f7bd08f26c0c9fd496ed4</id>
<content type='text'>
The Generics now contain one Vec of an enum for the generic parameters,
rather than two separate Vec's for lifetime and type parameters.

Additionally, places that previously used Vec&lt;LifetimeDef&gt; now use
Vec&lt;GenericParam&gt; instead.
</content>
</entry>
<entry>
<title>Use hygiene to access the injected crate (`core` or `std`) from builtin macros.</title>
<updated>2017-12-10T01:22:07+00:00</updated>
<author>
<name>Jeffrey Seyfried</name>
<email>jeffrey.seyfried@gmail.com</email>
</author>
<published>2017-12-06T18:50:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9c7969d3df6ce1cd5370eea32f18a08dc1f0850d'/>
<id>urn:sha1:9c7969d3df6ce1cd5370eea32f18a08dc1f0850d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use field init shorthand EVERYWHERE</title>
<updated>2017-08-15T22:29:17+00:00</updated>
<author>
<name>Zack M. Davis</name>
<email>code@zackmdavis.net</email>
</author>
<published>2017-08-07T05:54:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1b6c9605e41b7c7dc23e0e6f633f05912d0463dd'/>
<id>urn:sha1:1b6c9605e41b7c7dc23e0e6f633f05912d0463dd</id>
<content type='text'>
Like #43008 (f668999), but _much more aggressive_.
</content>
</entry>
<entry>
<title>Add Span to ast::WhereClause</title>
<updated>2017-07-28T15:43:35+00:00</updated>
<author>
<name>topecongiro</name>
<email>seuchida@gmail.com</email>
</author>
<published>2017-07-27T04:37:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6375b77ebb640001e9d076eec8601d926d2543f7'/>
<id>urn:sha1:6375b77ebb640001e9d076eec8601d926d2543f7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Hygienize lifetimes.</title>
<updated>2017-05-25T05:52:09+00:00</updated>
<author>
<name>Jeffrey Seyfried</name>
<email>jeffrey.seyfried@gmail.com</email>
</author>
<published>2017-03-25T21:14:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7fdc1fb2e40bc8fc5f1f59eb3b9d180619bcb210'/>
<id>urn:sha1:7fdc1fb2e40bc8fc5f1f59eb3b9d180619bcb210</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use resizable Vec instead of P&lt;[T]&gt; in AST</title>
<updated>2017-01-16T22:54:59+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2017-01-16T22:54:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=03620dba25328ee8cc7316cf6d9bad2d0a118ba1'/>
<id>urn:sha1:03620dba25328ee8cc7316cf6d9bad2d0a118ba1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add attribute support to generic lifetime and type parameters.</title>
<updated>2016-09-23T15:01:04+00:00</updated>
<author>
<name>Felix S. Klock II</name>
<email>pnkfelix@pnkfx.org</email>
</author>
<published>2016-05-17T16:51:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4c37ad660714ab65d20226c743f686cf6174abc7'/>
<id>urn:sha1:4c37ad660714ab65d20226c743f686cf6174abc7</id>
<content type='text'>
I am using `ThinAttributes` rather than a vector for attributes
attached to generics, since I expect almost all lifetime and types
parameters to not carry any attributes.
</content>
</entry>
<entry>
<title>Add Span field for Generics structs</title>
<updated>2016-08-18T16:23:36+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2016-08-10T17:39:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=59481823675a7392e8160b659b0f7fa119df60fd'/>
<id>urn:sha1:59481823675a7392e8160b659b0f7fa119df60fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>run rustfmt on libsyntax_ext folder</title>
<updated>2016-08-12T04:10:12+00:00</updated>
<author>
<name>Srinivas Reddy Thatiparthy</name>
<email>thatiparthysreenivas@gmail.com</email>
</author>
<published>2016-06-06T14:52:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d6526395244f533fd8cfd3bc1a86e2b5da963860'/>
<id>urn:sha1:d6526395244f533fd8cfd3bc1a86e2b5da963860</id>
<content type='text'>
</content>
</entry>
</feed>
