<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libsyntax/ext/tt/transcribe.rs, branch 0.6</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=0.6</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=0.6'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2013-03-26T23:20:02+00:00</updated>
<entry>
<title>syntax: Removing uses of HashMap</title>
<updated>2013-03-26T23:20:02+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-03-21T19:41:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e4c3d805a4d8151158abbddf990a5430529b829f'/>
<id>urn:sha1:e4c3d805a4d8151158abbddf990a5430529b829f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unused imports throughout</title>
<updated>2013-03-26T23:20:02+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-03-23T02:26:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fa7772893a63e6ac83ab461f80fb1f35c8633325'/>
<id>urn:sha1:fa7772893a63e6ac83ab461f80fb1f35c8633325</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Remove `pure` from libsyntax and librustc.</title>
<updated>2013-03-22T19:57:27+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-22T18:09:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e7c60c141b6f499ba551b53bc562925269d2f187'/>
<id>urn:sha1:e7c60c141b6f499ba551b53bc562925269d2f187</id>
<content type='text'>
</content>
</entry>
<entry>
<title>librustc: Make the compiler ignore purity.</title>
<updated>2013-03-19T00:21:16+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-16T18:11:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e78f2e2ac577f9c47cd58af52d3bcd496254545d'/>
<id>urn:sha1:e78f2e2ac577f9c47cd58af52d3bcd496254545d</id>
<content type='text'>
For bootstrapping purposes, this commit does not remove all uses of
the keyword "pure" -- doing so would cause the compiler to no longer
bootstrap due to some syntax extensions ("deriving" in particular).
Instead, it makes the compiler ignore "pure". Post-snapshot, we can
remove "pure" from the language.

There are quite a few (~100) borrow check errors that were essentially
all the result of mutable fields or partial borrows of `@mut`. Per
discussions with Niko I think we want to allow partial borrows of
`@mut` but detect obvious footguns. We should also improve the error
message when `@mut` is erroneously reborrowed.
</content>
</entry>
<entry>
<title>librustc: Don't accept `as Trait` anymore; fix all occurrences of it.</title>
<updated>2013-03-14T03:07:09+00:00</updated>
<author>
<name>Patrick Walton</name>
<email>pcwalton@mimiga.net</email>
</author>
<published>2013-03-12T20:00:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b1c699815ddf22bf17b58a8c3d317af33745e28d'/>
<id>urn:sha1:b1c699815ddf22bf17b58a8c3d317af33745e28d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>removed unused abstraction over paths and value_paths</title>
<updated>2013-03-06T17:41:47+00:00</updated>
<author>
<name>John Clements</name>
<email>clements@racket-lang.org</email>
</author>
<published>2013-03-06T01:02:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=88451878f8eb12a32dbb0c1eded1a91cb6df8305'/>
<id>urn:sha1:88451878f8eb12a32dbb0c1eded1a91cb6df8305</id>
<content type='text'>
</content>
</entry>
<entry>
<title>core: convert vec::{last,last_opt} to return references</title>
<updated>2013-03-06T03:39:18+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-03-06T03:39:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=743cfce7032e3b0649c22bf1c397280192bf9e95'/>
<id>urn:sha1:743cfce7032e3b0649c22bf1c397280192bf9e95</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unused imports throughout src/</title>
<updated>2013-03-04T17:27:01+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2013-02-27T05:10:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=dfb5c10dea0dd7bc56950148fa23fd02a07706fa'/>
<id>urn:sha1:dfb5c10dea0dd7bc56950148fa23fd02a07706fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libsyntax: add some more explicit copies for vecs_implicitly_copyable)</title>
<updated>2013-03-02T19:17:11+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-03-02T19:17:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4172faea8487d38abdaed54fcdf4cf9405ea011b'/>
<id>urn:sha1:4172faea8487d38abdaed54fcdf4cf9405ea011b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libsyntax: add some more explicit copies</title>
<updated>2013-02-27T04:48:12+00:00</updated>
<author>
<name>Erick Tryzelaar</name>
<email>erick.tryzelaar@gmail.com</email>
</author>
<published>2013-02-27T04:18:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ea36a0dee1630e24ba2889ca13550026b1af4f9d'/>
<id>urn:sha1:ea36a0dee1630e24ba2889ca13550026b1af4f9d</id>
<content type='text'>
</content>
</entry>
</feed>
