<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libsyntax/parse, branch 0.8</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=0.8</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=0.8'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2013-09-25T21:27:42+00:00</updated>
<entry>
<title>rustdoc: Improve comment stripping</title>
<updated>2013-09-25T21:27:42+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-09-23T21:18:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bcc7daa6bcf9728eca36512975f9251a946618d7'/>
<id>urn:sha1:bcc7daa6bcf9728eca36512975f9251a946618d7</id>
<content type='text'>
There is less implicit removal of various comment styles, and it also removes
extraneous stars occasionally found in docblock comments. It turns out that the
bug for getops was just a differently formatted block.

Closes #9425
Closes #9417
</content>
</entry>
<entry>
<title>auto merge of #9481 : jbclements/rust/minor-cleanup, r=cmr</title>
<updated>2013-09-25T09:15:59+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2013-09-25T09:15:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f6c9ff392becd86ee22ad96cd66e137b65195f97'/>
<id>urn:sha1:f6c9ff392becd86ee22ad96cd66e137b65195f97</id>
<content type='text'>
Small stuff... might as well get it into the tree. One new test case, some issue # cleanup, remove some unused imports. 
</content>
</entry>
<entry>
<title>auto merge of #9432 : alexcrichton/rust/correct-item-visibility, r=pcwalton</title>
<updated>2013-09-25T07:55:53+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2013-09-25T07:55:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=45311846145a39e6b5755a0740d53ac4ea3183a4'/>
<id>urn:sha1:45311846145a39e6b5755a0740d53ac4ea3183a4</id>
<content type='text'>
This fixes private statics and functions from being usable cross-crates, along
with some bad privacy error messages. This is a reopening of #8365 with all the
privacy checks in privacy.rs instead of resolve.rs (where they should be
anyway).

These maps of exported items will hopefully get used for generating
documentation by rustdoc

Closes #8592
</content>
</entry>
<entry>
<title>auto merge of #9335 : alexcrichton/rust/issue-7945, r=thestinger</title>
<updated>2013-09-25T02:06:01+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2013-09-25T02:06:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=512f7781fe86cde003132969e7fed5aea649bf13'/>
<id>urn:sha1:512f7781fe86cde003132969e7fed5aea649bf13</id>
<content type='text'>
As documented in issue #7945, these literal identifiers are all accepted by rust
today, but they should probably be disallowed (especially `'''`). This changes
all escapable sequences to being *required* to be escaped.

Closes #7945

I wanted to write the tests with more exact spans, but I think #9308 will be fixing that?
</content>
</entry>
<entry>
<title>Disallow char literals which should be escaped</title>
<updated>2013-09-25T00:56:42+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-09-19T18:55:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2661b633c50f6c43b95aca1381f25fc314544331'/>
<id>urn:sha1:2661b633c50f6c43b95aca1381f25fc314544331</id>
<content type='text'>
As documented in issue #7945, these literal identifiers are all accepted by rust
today, but they should probably be disallowed (especially `'''`). This changes
all escapable sequences to being *required* to be escaped.

Closes #7945
</content>
</entry>
<entry>
<title>added test case for tokenization of macro_rules</title>
<updated>2013-09-24T23:00:58+00:00</updated>
<author>
<name>John Clements</name>
<email>clements@racket-lang.org</email>
</author>
<published>2013-09-24T22:57:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0269850cc22a9b09f08584d312001afd8887e89b'/>
<id>urn:sha1:0269850cc22a9b09f08584d312001afd8887e89b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>auto merge of #9336 : alexcrichton/rust/issue-7981, r=catamorphism</title>
<updated>2013-09-24T22:45:57+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2013-09-24T22:45:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a7d68adbdd75300a4a10b2dcc59e1048f613db48'/>
<id>urn:sha1:a7d68adbdd75300a4a10b2dcc59e1048f613db48</id>
<content type='text'>
Progress on #7981

This doesn't completely close the issue because `struct A;` is still allowed, and it's a much larger change to disallow that. I'm also not entirely sure that we want to disallow that. Regardless, punting that discussion to the issue instead.
</content>
</entry>
<entry>
<title>Stop accepting 'impl ...;', require {} instead</title>
<updated>2013-09-24T21:12:02+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-09-19T19:09:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4b266f1c0df9732bbdea44b0df3d459d4cf2756d'/>
<id>urn:sha1:4b266f1c0df9732bbdea44b0df3d459d4cf2756d</id>
<content type='text'>
Progress on #7981
</content>
</entry>
<entry>
<title>cleanup</title>
<updated>2013-09-24T19:31:24+00:00</updated>
<author>
<name>John Clements</name>
<email>clements@racket-lang.org</email>
</author>
<published>2013-09-24T19:31:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=876fce2751c9d58fd803672809a8ad2cf2814504'/>
<id>urn:sha1:876fce2751c9d58fd803672809a8ad2cf2814504</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Correctly encode item visibility in metadata</title>
<updated>2013-09-24T16:57:25+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-08-07T07:11:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=10a583ce1ac28a8cbf34b0f4274285f33bdfce29'/>
<id>urn:sha1:10a583ce1ac28a8cbf34b0f4274285f33bdfce29</id>
<content type='text'>
This fixes private statics and functions from being usable cross-crates, along
with some bad privacy error messages. This is a reopening of #8365 with all the
privacy checks in privacy.rs instead of resolve.rs (where they should be
anyway).

These maps of exported items will hopefully get used for generating
documentation by rustdoc

Closes #8592
</content>
</entry>
</feed>
