<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libsyntax/util/parser_testing.rs, branch 1.6.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.6.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.6.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2015-11-11T00:10:31+00:00</updated>
<entry>
<title>Rename _nopanic methods to remove the suffix.</title>
<updated>2015-11-11T00:10:31+00:00</updated>
<author>
<name>Eli Friedman</name>
<email>eli.friedman@gmail.com</email>
</author>
<published>2015-11-11T00:08:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=69210a96358dcd85bf6d08f21c8e2df5b0975d3b'/>
<id>urn:sha1:69210a96358dcd85bf6d08f21c8e2df5b0975d3b</id>
<content type='text'>
Just `sed s/_nopanic//g`.  Hopefully makes libsyntax a bit more
readable.
</content>
</entry>
<entry>
<title>Update libsyntax tests.</title>
<updated>2015-10-28T03:09:10+00:00</updated>
<author>
<name>Eli Friedman</name>
<email>eli.friedman@gmail.com</email>
</author>
<published>2015-10-24T03:35:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=56ba8feed694f46f28d9e65e132e1b62cc18e0b4'/>
<id>urn:sha1:56ba8feed694f46f28d9e65e132e1b62cc18e0b4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>syntax: replace sess.span_diagnostic.cm with sess.codemap().</title>
<updated>2015-05-13T22:47:56+00:00</updated>
<author>
<name>Eduard Burtescu</name>
<email>edy.burt@gmail.com</email>
</author>
<published>2015-05-13T20:08:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6a59d1824d11b6452463fcc23ad64cd142dfa203'/>
<id>urn:sha1:6a59d1824d11b6452463fcc23ad64cd142dfa203</id>
<content type='text'>
</content>
</entry>
<entry>
<title>syntax: refactor (Span)Handler and ParseSess constructors to be methods.</title>
<updated>2015-05-13T22:47:56+00:00</updated>
<author>
<name>Eduard Burtescu</name>
<email>edy.burt@gmail.com</email>
</author>
<published>2015-05-13T20:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f786437bd223740d9767345731d458d10936f8d7'/>
<id>urn:sha1:f786437bd223740d9767345731d458d10936f8d7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>address fallout in libsyntaxtest.</title>
<updated>2015-05-09T06:46:58+00:00</updated>
<author>
<name>Felix S. Klock II</name>
<email>pnkfelix@pnkfx.org</email>
</author>
<published>2015-05-09T06:46:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8654dfbc2f4c1a6da7c9b8f9cce3cfa9f4bc46bb'/>
<id>urn:sha1:8654dfbc2f4c1a6da7c9b8f9cce3cfa9f4bc46bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change name of unit test sub-module to "tests".</title>
<updated>2015-04-24T21:06:41+00:00</updated>
<author>
<name>Johannes Oertel</name>
<email>johannes.oertel@uni-due.de</email>
</author>
<published>2015-04-24T15:30:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=07cc7d9960a1bc767dc051b9fae0c7ad2b5cd97f'/>
<id>urn:sha1:07cc7d9960a1bc767dc051b9fae0c7ad2b5cd97f</id>
<content type='text'>
Changes the style guidelines regarding unit tests to recommend using a
sub-module named "tests" instead of "test" for unit tests as "test"
might clash with imports of libtest.
</content>
</entry>
<entry>
<title>syntax: Copy unstable str::char_at into libsyntax</title>
<updated>2015-04-21T17:23:53+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2015-04-21T17:19:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=19c8d701743922a709a4eb6554f562996b7baa27'/>
<id>urn:sha1:19c8d701743922a709a4eb6554f562996b7baa27</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Work towards a non-panicing parser (libsyntax)</title>
<updated>2015-04-05T08:52:50+00:00</updated>
<author>
<name>Phil Dawes</name>
<email>phil@phildawes.net</email>
</author>
<published>2015-03-28T21:58:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b2bcb7229a4bce0c9459807552d071eb2b2c9a0e'/>
<id>urn:sha1:b2bcb7229a4bce0c9459807552d071eb2b2c9a0e</id>
<content type='text'>
- Functions in parser.rs return PResult&lt;&gt; rather than panicing
- Other functions in libsyntax call panic! explicitly for now if they rely on panicing behaviour.
- 'panictry!' macro added as scaffolding while converting panicing functions.
  (This does the same as 'unwrap()' but is easier to grep for and turn into try!())
- Leaves panicing wrappers for the following functions so that the
  quote_* macros behave the same:
  - parse_expr, parse_item, parse_pat, parse_arm, parse_ty, parse_stmt
</content>
</entry>
<entry>
<title>cleanup: Remove unused braces in use statements</title>
<updated>2015-03-28T09:23:20+00:00</updated>
<author>
<name>Richo Healey</name>
<email>richo@psych0tik.net</email>
</author>
<published>2015-03-28T09:23:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=cbce6bfbdb140561add2ff258b305e7c7f2ad5c6'/>
<id>urn:sha1:cbce6bfbdb140561add2ff258b305e7c7f2ad5c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>syntax: use lookahead to distinguish inner and outer attributes, instead of passing the latter around.</title>
<updated>2015-03-13T09:36:30+00:00</updated>
<author>
<name>Eduard Burtescu</name>
<email>edy.burt@gmail.com</email>
</author>
<published>2015-03-13T09:34:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9889aae13e14c306fce8cefd669841fa40f26ee9'/>
<id>urn:sha1:9889aae13e14c306fce8cefd669841fa40f26ee9</id>
<content type='text'>
</content>
</entry>
</feed>
