[rust-dev] A More Detailed Tour of the Rust Compiler

2014-04-04 Thread Tom Lee
level overview and a detailed look at compiler innards, but hopefully it's useful to somebody out there. Cheers, Tom -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org

Re: [rust-dev] Slides from PDX-Rust talk RE: compiler internals

2014-04-01 Thread Tom Lee
29, 2014 at 5:06 PM, Tom Lee rust-...@tomlee.co wrote: Hey folks, Here are the slides from a presentation I gave at PDX-Rust earlier this week. The talk itself was a little rough, but I think the notes outlined in the slides might be useful for anybody looking to start poking around inside

[rust-dev] PDX-Rust meetup tomorrow

2014-03-26 Thread Tom Lee
walk-through of some Rust compiler internals. Should be fun either way! Cheers, Tom -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] What form should the official Rust binary installers for Unixes take?

2014-02-11 Thread Tom Lee
Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] Adding else on for loops, like Python

2013-08-11 Thread Tom Lee
. ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https

Re: [rust-dev] Adding else on for loops, like Python

2013-08-11 Thread Tom Lee
On Sun, Aug 11, 2013 at 1:06 PM, Simon Sapin simon.sa...@exyr.org wrote: Le 11/08/2013 06:53, Tom Lee a écrit : I think your code will be more explicit if you declare a mut bool check its state post-`break`. :) Resorting to boolean flags to cope with insufficient control flow feels like

Re: [rust-dev] Adding else on for loops, like Python

2013-08-11 Thread Tom Lee
On Sun, Aug 11, 2013 at 1:27 PM, Patrick Walton pwal...@mozilla.com wrote: On 8/12/13 8:25 AM, Tom Lee wrote: :) I can appreciate that, but I'm still not really convinced that this problem deserves more syntax. That said, I might hate for..else less if it used something other than

Re: [rust-dev] Adding else on for loops, like Python

2013-08-11 Thread Tom Lee
On Sun, Aug 11, 2013 at 3:18 PM, Jens Nockert j...@nockert.se wrote: On 12 Aug 2013, at 00:09, Tom Lee rust-...@tomlee.co wrote: Anyway, this sort of confusion is exactly why I don't like for..else. But then maybe I'm the only one that's confused here. :) Obviously you were not the only

Re: [rust-dev] Adding else on for loops, like Python

2013-08-10 Thread Tom Lee
Rust-dev@mozilla.org https://mail.mozilla.org/**listinfo/rust-devhttps://mail.mozilla.org/listinfo/rust-dev -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org

Re: [rust-dev] Java versus .NET style for acronyms in type names

2013-08-02 Thread Tom Lee
/listinfo/rust-dev -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev ___ Rust-dev mailing list Rust

[rust-dev] Portland, OR Friday 6:30pm: Patrick Walton Jack Moffitt talk sprocketnes Servo

2013-07-25 Thread Tom Lee
should be open from around 6:15pm. We'll be supplying beer pizza. There's also plenty of soda if you're not alcohol-ly inclined. Any other questions, feel free to ping me at this address. Otherwise, see you there! Cheers, Tom -- Tom Lee / http://tomlee.co / @tglee

Re: [rust-dev] Rust 0.7 prerelease testing

2013-07-03 Thread Tom Lee
Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev -- Tom Lee / http://tomlee.co / @tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] Rust: A Friendly Introduction in Portland, OR [June 17th, 6pm]

2013-06-08 Thread Tom Lee
Richardson co...@octayn.net wrote: On Fri, Jun 7, 2013 at 2:20 AM, Tom Lee rust-...@tomlee.co wrote: Mozilla's own Tim Chevalier is giving a preview of his OSBridge talk, Rust: A Friendly Introduction later this month. Should you be in town the evening of June 17th, please drop

[rust-dev] Rust: A Friendly Introduction in Portland, OR [June 17th, 6pm]

2013-06-07 Thread Tom Lee
://opensourcebridge.org/sessions/970 Hope to see you there! Cheers, Tom -- Tom Lee / http://tomlee.co / @tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

[rust-dev] Traits mod

2013-06-01 Thread Tom Lee
issue for this? Appreciate any clarification! Cheers, Tom -- Tom Lee / http://tomlee.co / @tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

Re: [rust-dev] Anybody in PDX for some Rust-ing?

2013-05-26 Thread Tom Lee
...@gmail.comwrote: On Fri, May 24, 2013 at 10:06 PM, Tom Lee rust-...@tomlee.co wrote: Hey folks, Since the folks in San Francisco seem to be trying to arrange some sort of meetup, I can't help but wonder if there's any similar interest in good ol' Portland, OR? Meetup, hackathon

Re: [rust-dev] glue_fns, shims tydescs

2013-05-24 Thread Tom Lee
that they were local to some unit of execution -- didn't realize that they were global (although that should have been obvious, thinking about it). Cheers, Tom On Thu, May 23, 2013 at 11:14 AM, Graydon Hoare gray...@mozilla.com wrote: On 23/05/2013 3:33 AM, Tom Lee wrote: Can anybody out

Re: [rust-dev] glue_fns, shims tydescs

2013-05-24 Thread Tom Lee
Niko On Thu, May 23, 2013 at 03:33:24AM -0700, Tom Lee wrote: Hey Rustlers, I'm fighting with issue #6575 https://github.com/mozilla/rust/issues/6575 which involves the removal of a useless function parameter emitted during the trans phase. I've got a WIP available herehttps

[rust-dev] Anybody in PDX for some Rust-ing?

2013-05-24 Thread Tom Lee
sort of indication of interest it'd help me make my case. :) Cheers, Tom -- *Tom Lee */ http://tomlee.co / @tglee http://twitter.com/tglee ___ Rust-dev mailing list Rust-dev@mozilla.org https://mail.mozilla.org/listinfo/rust-dev

[rust-dev] Vectors, mutability vec::dedup

2012-12-13 Thread Tom Lee
Hey folks, So turns out I'm still struggling with types a little. This time it's related to mutability function signatures. Apologies in advance if I screw up terminology. Take the following code, which prints out the unique elements of a vector: extern mod std; use std; fn main() { let mut