<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libsyntax_ext/assert.rs, branch 1.34.2</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.34.2</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.34.2'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-02-12T15:28:52+00:00</updated>
<entry>
<title>Rename rustc_errors dependency in rust 2018 crates</title>
<updated>2019-02-12T15:28:52+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-02-07T15:56:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3216c7656afbada6af3cbf77ef5236a7153f58e8'/>
<id>urn:sha1:3216c7656afbada6af3cbf77ef5236a7153f58e8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libsyntax_ext =&gt; 2018</title>
<updated>2019-02-04T12:49:54+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-02-04T12:49:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=94f121ff3f47fecdcf458b691f1bf87f8b1f1f1d'/>
<id>urn:sha1:94f121ff3f47fecdcf458b691f1bf87f8b1f1f1d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make `panictry!` private to libsyntax</title>
<updated>2019-01-02T16:02:30+00:00</updated>
<author>
<name>Andy Russell</name>
<email>arussell123@gmail.com</email>
</author>
<published>2018-12-04T19:10:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0a6fb8473872b2a6dd7fe66697f90dceac667ec4'/>
<id>urn:sha1:0a6fb8473872b2a6dd7fe66697f90dceac667ec4</id>
<content type='text'>
This commit completely removes usage of the `panictry!` macro from
outside libsyntax. The macro causes parse errors to be fatal, so using
it in libsyntax_ext caused parse failures *within* a syntax extension to
be fatal, which is probably not intended.

Furthermore, this commit adds spans to diagnostics emitted by empty
extensions if they were missing, à la #56491.
</content>
</entry>
<entry>
<title>Remove licenses</title>
<updated>2018-12-26T04:08:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2018-12-25T15:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a663555ddf36f6b041445894a8c175cd1bc718c'/>
<id>urn:sha1:2a663555ddf36f6b041445894a8c175cd1bc718c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>emit error with span for empty asserts</title>
<updated>2018-12-04T15:22:48+00:00</updated>
<author>
<name>Andy Russell</name>
<email>arussell123@gmail.com</email>
</author>
<published>2018-12-04T01:45:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a367cec6e355a0b17d611acba5577ee72c228971'/>
<id>urn:sha1:a367cec6e355a0b17d611acba5577ee72c228971</id>
<content type='text'>
Fixes #55547.
</content>
</entry>
<entry>
<title>mv (mod) codemap source_map</title>
<updated>2018-08-19T21:01:00+00:00</updated>
<author>
<name>Donato Sciarra</name>
<email>sciarp@gmail.com</email>
</author>
<published>2018-08-18T10:14:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=82607d2cf3866c7cc31050548f2fbfa39207e319'/>
<id>urn:sha1:82607d2cf3866c7cc31050548f2fbfa39207e319</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Deny bare trait objects in src/libsyntax_ext</title>
<updated>2018-07-12T09:58:16+00:00</updated>
<author>
<name>ljedrz</name>
<email>ljedrz@gmail.com</email>
</author>
<published>2018-07-12T09:58:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=08c113abef13bd5ed050f7f8480afcd04eda081f'/>
<id>urn:sha1:08c113abef13bd5ed050f7f8480afcd04eda081f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rustc: Correctly pretty-print macro delimiters</title>
<updated>2018-05-22T18:56:41+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2018-05-22T15:01:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a137d00ce52e9db78bb803d1384fdf3a4c4e63ea'/>
<id>urn:sha1:a137d00ce52e9db78bb803d1384fdf3a4c4e63ea</id>
<content type='text'>
This commit updates the `Mac_` AST structure to keep track of the delimiters
that it originally had for its invocation. This allows us to faithfully
pretty-print macro invocations not using parentheses (e.g. `vec![...]`). This in
turn helps procedural macros due to #43081.

Closes #50840
</content>
</entry>
<entry>
<title>Fix assertion message generation</title>
<updated>2018-05-06T03:13:32+00:00</updated>
<author>
<name>Shotaro Yamada</name>
<email>sinkuu@sinkuu.xyz</email>
</author>
<published>2018-05-06T01:55:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=39df2231bb7d3de171b6a7117bb76bbee5a4597f'/>
<id>urn:sha1:39df2231bb7d3de171b6a7117bb76bbee5a4597f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove more duplicated spans</title>
<updated>2018-04-06T08:50:49+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2018-03-19T00:54:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b3b5ef186c1f9f57179ab1dc922f6c7f02fb9d8c'/>
<id>urn:sha1:b3b5ef186c1f9f57179ab1dc922f6c7f02fb9d8c</id>
<content type='text'>
</content>
</entry>
</feed>
