| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-21 | auto merge of #6658 : sanxiyn/rust/static-string-2, r=thestinger | bors | -11/+11 | |
| 2013-05-22 | Use static strings | Seo Sanghyeon | -9/+9 | |
| 2013-05-21 | auto merge of #6611 : huonw/rust/syntax-ext-no-dup, r=jbclements | bors | -2242/+1659 | |
| Fixes https://github.com/mozilla/rust/issues/6578 by merging the 3 different ways to build an AST into a single `AstBuilder` trait, creating a more uniform and briefer interface. Also, converts the `ext_ctxt` trait-object to be a plain struct, as well as renaming it to `ExtCtxt`. Seems to make expansion slightly faster for the normal case (e.g. `libcore` and `libstd`), but slower for `librustc` (slightly) and `libsyntax` (0.3s -> 0.8s! I'm investigating this, but I'd prefer this patch to land relatively quickly.). `git blame` suggests maybe @graydon or @erickt are familiar with this area of the code. r? | ||||
| 2013-05-22 | Take string slices | Seo Sanghyeon | -2/+2 | |
| 2013-05-22 | syntax/ext: convert all AstBuilder methods to a uniform syntax. | Huon Wilson | -1686/+998 | |
| 2013-05-22 | syntax/ext: migrate build.rs functions to AstBuilder methods. | Huon Wilson | -925/+1126 | |
| 2013-05-22 | syntax/ext: collect the ast building traits into a single trait. | Huon Wilson | -493/+420 | |
| 2013-05-22 | syntax/ext: modernise ext_ctxt to be CamelCase and use new. | Huon Wilson | -324/+323 | |
| 2013-05-22 | syntax/ext: Remove the trait-object indirection of the ext_ctxt object. | Huon Wilson | -106/+82 | |
| 2013-05-21 | syntax/ext: remove the ~str dependence of the deriving code. | Huon Wilson | -79/+81 | |
| 2013-05-21 | Correct span for expr_vec | Seo Sanghyeon | -1/+1 | |
| 2013-05-20 | Remove all unnecessary allocations (as flagged by lint) | Alex Crichton | -303/+298 | |
| 2013-05-20 | Implement a lint mode to detect unnecessary allocations | Alex Crichton | -3/+3 | |
| 2013-05-20 | getting rid of interner_key! macro | John Clements | -113/+54 | |
| 2013-05-20 | hygiene infrastructure. | John Clements | -110/+194 | |
| - added a hash table to memoize rename and mark operations. - added rename, mark, and resolve fold fns | ||||
| 2013-05-20 | detect unused attrs in one more place, allow parsing to continue for all | John Clements | -24/+53 | |
| changed a bunch of fatal()'s into err()'s, to allow parsing to proceed. | ||||
| 2013-05-20 | parser comment | John Clements | -0/+1 | |
| 2013-05-20 | refactoring test functions | John Clements | -70/+105 | |
| 2013-05-20 | auto merge of #6635 : brson/rust/snapshot, r=brson | bors | -249/+0 | |
| 2013-05-19 | Register snapshots | Brian Anderson | -249/+0 | |
| 2013-05-19 | Fix many warnings. | Steve Klabnik | -3/+2 | |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -7/+7 | |
| 2013-05-18 | auto merge of #6603 : thestinger/rust/whitespace, r=thestinger | bors | -1/+0 | |
| 2013-05-19 | reduce the usage of explicit version markers | Daniel Micay | -1/+1 | |
| 2013-05-18 | minor automated whitespace fixes | Daniel Micay | -1/+0 | |
| 2013-05-18 | Made bytes!() accept a list of string, integer or char literals | Marvin Löbel | -5/+50 | |
| 2013-05-17 | Re-implement lint with less emphasis on item ids | Alex Crichton | -7/+13 | |
| This way it's much easier to add lints throughout compilation correctly, and functions on impls can alter the way lints are emitted. | ||||
| 2013-05-16 | Add BuiltinBounds to closure type: parse and handle subtyping, | Niko Matsakis | -11/+16 | |
| but do not integrate with kindck etc (requires a snapshot first) | ||||
| 2013-05-16 | auto merge of #6530 : huonw/rust/deriving-deepclone, r=bstrie | bors | -7/+43 | |
| 2013-05-16 | syntax: use fmt! over + in deriving/clone | Huon Wilson | -6/+6 | |
| 2013-05-16 | auto merge of #6531 : sammykim/rust/bytes, r=luqmana | bors | -0/+31 | |
| Fix #4334. | ||||
| 2013-05-16 | syntax: implement #[deriving(DeepClone)]. Fixes #6514. | Huon Wilson | -6/+42 | |
| 2013-05-16 | Implement bytes! syntax extension | Sangeun Kim | -0/+31 | |
| 2013-05-15 | auto merge of #6502 : huonw/rust/no-auto-code, r=graydon | bors | -1738/+714 | |
| Replace all instances of #[auto_*code] with the appropriate #[deriving] attribute and remove the majority of the actual auto_* code, leaving stubs to refer the user to the new syntax. Also, moves the useful contents of auto_encode.rs to more appropriate spots: tests and comments to deriving/encodable.rs, and the ExtCtxtMethods trait to build.rs (unused so far, but the method syntax might be nicer than using the mk_* fns in many instances). | ||||
| 2013-05-15 | auto merge of #6500 : kud1ing/rust/cleanup, r=bstrie | bors | -36/+0 | |
| Fixes #6445 | ||||
| 2013-05-16 | syntax: deprecate #[auto_{en,de}code] in favour of #[deriving({En,De}codable)]. | Huon Wilson | -1738/+714 | |
| Replace all instances of #[auto_*code] with the appropriate #[deriving] attribute and remove the majority of the actual code, leaving stubs to refer the user to the new syntax. | ||||
| 2013-05-15 | auto merge of #6499 : dotdash/rust/static_keywords, r=thestinger | bors | -127/+127 | |
| 2013-05-15 | auto merge of #6487 : recrack/rust/vec_len, r=thestinger | bors | -14/+14 | |
| Rename vec::len(var) to var.len() ``` libcore, libfuzzer, librustc, librustdoc, libstd, libsyntax test/auxiliary test/bench test/run-pass ``` | ||||
| 2013-05-15 | remove deriving_eq, deriving_iter_bytes, deriving_clone (deprecated in 0.6) | Lenny222 | -36/+0 | |
| 2013-05-15 | Allow static strings to be used with keyword checks | Björn Steinbrink | -127/+127 | |
| 2013-05-14 | auto merge of #6224 : erickt/rust/rustc-cleanup, r=erickt | bors | -76/+176 | |
| Just a couple minor cleanups and renames of librustc | ||||
| 2013-05-14 | auto merge of #6478 : dotdash/rust/inlining, r=catamorphism | bors | -0/+4 | |
| Not inlining these affects the hash table performance quite badly. | ||||
| 2013-05-14 | rustc: rename ast::self_ty and related fields to explicit_self | Erick Tryzelaar | -78/+77 | |
| 2013-05-14 | syntax: add IterBytes impls for some ast types | Erick Tryzelaar | -0/+101 | |
| 2013-05-15 | Rename vec::len(var) to var.len() | Youngmin Yoo | -14/+14 | |
| 2013-05-15 | Use parentheses for cond! macro instead of preceding pipes | Brendan Zabarauskas | -4/+4 | |
| This is temporary. Once the macro parser has improved or been re-written these can be removed. | ||||
| 2013-05-15 | Add Scheme-style `cond!` macro to syntax::ext::expand | Brendan Zabarauskas | -1/+35 | |
| Addresses issue #6037 | ||||
| 2013-05-14 | Add inlining for iter_bytes for types used as hashmap keys | Björn Steinbrink | -0/+4 | |
| Not inlining these affects the hash table performance quite badly. | ||||
| 2013-05-14 | Fix test fallout from removing vecs_implicitly_copyable | Alex Crichton | -28/+23 | |
| 2013-05-14 | syntax: Remove #[allow(vecs_implicitly_copyable)] | Alex Crichton | -236/+239 | |
