Graydon Hoare
|
c284b8b1dc
|
Start using core::path2::Path in a lot of places.
|
2012-08-24 15:51:16 -07:00 |
|
Niko Matsakis
|
a8f1bee457
|
fix some unused pattern binding warnings
|
2012-08-24 15:37:21 -07:00 |
|
Paul Stansifer
|
aa024acae3
|
Use a faked-up function as a key, because functions aren't identical cross-crate in Windows.
|
2012-08-24 12:20:06 -07:00 |
|
Michael Sullivan
|
0f996f70a6
|
Remove purity from fn_decl and move it out to containing AST elements.
|
2012-08-23 19:40:01 -07:00 |
|
Niko Matsakis
|
a08f3a7d4d
|
More complete fix to #3162 (borrowck bug related to access to rec fields)
|
2012-08-23 18:54:08 -07:00 |
|
Paul Stansifer
|
89bbaff84f
|
m1!{...} is now forbidden. Use m1!(...) instead.
|
2012-08-23 11:14:15 -07:00 |
|
Paul Stansifer
|
c74a442e86
|
Eliminate some extraneous curly brackets inside invocations of macro_rules! .
|
2012-08-23 11:14:14 -07:00 |
|
Paul Stansifer
|
29f32b4a72
|
m1!{...} -> m1!(...)
|
2012-08-23 11:14:14 -07:00 |
|
Ben Blum
|
5b25fc918a
|
Parse and typecheck moving out of enums (#2329)
|
2012-08-22 20:40:25 -04:00 |
|
Tim Chevalier
|
0a5f88a240
|
Change the log level to be an enum rather than an int
This allows for eliminating a match check.
|
2012-08-22 16:14:39 -07:00 |
|
Paul Stansifer
|
1153b5dcc8
|
intern identifiers
|
2012-08-22 14:59:25 -07:00 |
|
Paul Stansifer
|
7317bf8792
|
pre-intern some fixed names so they can be used as constants
|
2012-08-22 14:59:24 -07:00 |
|
Paul Stansifer
|
9a7890d73a
|
Centralize ident interner generation.
|
2012-08-22 14:59:24 -07:00 |
|
Tim Chevalier
|
7284969292
|
Eliminate many match checks in rustc
|
2012-08-22 12:25:08 -07:00 |
|
Michael Sullivan
|
a65366d548
|
Parse explicit self in more places. Work on #2585.
|
2012-08-17 17:14:32 -07:00 |
|
Lindsey Kuper
|
eb834fdb81
|
Stop parsing iface .
|
2012-08-17 14:32:34 -07:00 |
|
Brian Anderson
|
3ab4b014cf
|
Remove the class keyword
|
2012-08-17 10:13:45 -07:00 |
|
Patrick Walton
|
2489baf82e
|
libsyntax: Fix parsing of "loop unsafe".
It was getting misparsed as a label.
|
2012-08-16 15:19:47 -07:00 |
|
Brian Anderson
|
af43613795
|
Long lines
|
2012-08-15 17:32:19 -07:00 |
|
Patrick Walton
|
a78030fbaa
|
libsyntax: Parse tuple and unit structs
|
2012-08-15 17:11:13 -07:00 |
|
Patrick Walton
|
6319c8fbc4
|
rustc: Fix long lines and trailing whitespace
|
2012-08-15 16:25:42 -07:00 |
|
Patrick Walton
|
3038968f28
|
rustc: Perform some AST surgery to separate out class fields from methods
|
2012-08-15 16:20:35 -07:00 |
|
Patrick Walton
|
353c632c2d
|
libsyntax: Parse nested enums
|
2012-08-15 16:20:34 -07:00 |
|
Patrick Walton
|
bdb206f285
|
rustc: Parse labeled loop, break, and again
|
2012-08-15 16:20:34 -07:00 |
|
Patrick Walton
|
fe9d07dda6
|
rustc: "as Trait" can now be written "as @Trait".
There is also code for ~Trait and &Trait, but these are currently (incorrectly)
synonyms for "as @Trait" and "as &Trait".
|
2012-08-15 16:20:31 -07:00 |
|
Brian Anderson
|
74c69e1053
|
Convert more core types to camel case
|
2012-08-15 14:14:20 -07:00 |
|
Brian Anderson
|
11258310e2
|
Convert more core types to camel case
|
2012-08-14 18:26:03 -07:00 |
|
Michael Sullivan
|
e640a66eb4
|
Make most forms of explicit self work. By-value not implemented. Work on #2585.
|
2012-08-14 17:40:04 -07:00 |
|
Patrick Walton
|
138dc3048a
|
libsyntax: Parse "extern mod foo;"
|
2012-08-14 14:24:00 -07:00 |
|
Patrick Walton
|
30e243a5aa
|
libsyntax: Give a nice error message when view items are used anywhere other than the top of a module.
This is a step on the way to parsing "extern mod foo;"
|
2012-08-14 11:23:25 -07:00 |
|
Patrick Walton
|
81e6bb1b4b
|
libsyntax: First steps toward parsing "extern mod std;"
|
2012-08-14 11:08:15 -07:00 |
|
Patrick Walton
|
80b6850e34
|
libsyntax: Implement [int*3] syntax for fixed length vector types
|
2012-08-13 20:00:03 -07:00 |
|
Brian Anderson
|
6b43c0c1ad
|
Stop parsing old operator overloading syntax
|
2012-08-13 18:59:17 -07:00 |
|
Patrick Walton
|
799bc0a193
|
libsyntax: Allow "use" to be used in place of "import"
|
2012-08-13 17:55:54 -07:00 |
|
Patrick Walton
|
55ee06b8ce
|
libsyntax: Accept "1..3" as the preferred form of "1 to 3" in patterns
|
2012-08-13 17:37:08 -07:00 |
|
Patrick Walton
|
9b5266d745
|
libsyntax: Refactor item parsing so that items and view items are parsed in the same function.
This is a step on the way to "extern mod foo;" and replacing "import" with "use".
|
2012-08-13 17:12:35 -07:00 |
|
Patrick Walton
|
87f4c15311
|
rustc: Make functional record and struct update use ".." instead of "with".
"with" is still accepted for backwards compatibility.
|
2012-08-13 16:07:12 -07:00 |
|
Michael Sullivan
|
5fd891f10b
|
Fix method mode parsing bug. Closes #3191.
|
2012-08-13 12:30:07 -05:00 |
|
Patrick Walton
|
5c9c9a6a9f
|
libsyntax: Parse common enum fields
|
2012-08-08 19:51:48 -07:00 |
|
Brian Anderson
|
436a90e3d7
|
syntax: Stop supporting old impl syntax
|
2012-08-08 18:19:26 -07:00 |
|
Brian Anderson
|
6a0720b439
|
Convert impls to new syntax
|
2012-08-08 18:19:24 -07:00 |
|
Patrick Walton
|
4f98e80db1
|
rustc: Do some plumbing work in preparation for common fields in enums
|
2012-08-08 17:15:37 -07:00 |
|
Patrick Walton
|
f110e8f21c
|
rustc: Do some plumbing work on nested enums
|
2012-08-08 14:19:21 -07:00 |
|
Niko Matsakis
|
52c517383e
|
improve borrowck error messages to explain regions better
|
2012-08-07 20:59:06 -07:00 |
|
Patrick Walton
|
5ce3281a62
|
rustc: Parse variant structs; add a trivial test case
|
2012-08-07 18:55:19 -07:00 |
|
Patrick Walton
|
438765da59
|
rustc: Box struct_defs
|
2012-08-07 17:46:51 -07:00 |
|
Michael Sullivan
|
7f7f47620e
|
Implement static typeclass methods. Closes #3132.
|
2012-08-07 17:18:14 -07:00 |
|
Patrick Walton
|
deaef48675
|
rustc: Split out struct bodies into a separate "struct_def" type in the AST
|
2012-08-07 15:35:05 -07:00 |
|
Patrick Walton
|
727c7c7499
|
rustc: Add stub support for struct variants to the AST
|
2012-08-07 14:25:53 -07:00 |
|
Brian Anderson
|
bc267c696c
|
syntax: Rename expr_alt to expr_match
|
2012-08-07 13:35:51 -07:00 |
|