about summary refs log tree commit diff
path: root/src/libsyntax/ext/base.rs
AgeCommit message (Collapse)AuthorLines
2013-02-19convert SyntaxExtensions's key to a @~strErick Tryzelaar-26/+26
2013-02-19Alias HashMap<~str, SyntaxExtension> to SyntaxExtensionsErick Tryzelaar-1/+3
2013-02-15libsyntax: Get rid of uses of `move` and don't parse it.Luqman Aden-1/+1
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2013-02-13cleanup, fix test caseJohn Clements-1/+1
2013-02-13Commenting, test cases, cleanupJohn Clements-5/+7
2013-02-07librustc: Lots of de-muting. rs=demutingPatrick Walton-55/+57
2013-02-03rename map -> oldmap and mark it as deprecatedDaniel Micay-1/+1
LinearMap is quite a bit faster, and is fully owned/sendable without requiring copies. The older std::map also doesn't use explicit self and relies on mutable fields.
2013-01-31test cases, cleanupJohn Clements-2/+1
2013-01-29libsyntax: De-export libsyntax. rs=deexportingPatrick Walton-23/+25
2013-01-23renaming to adhere to conventionsJohn Clements-33/+33
2013-01-20Convert many libsyntax records into structsErick Tryzelaar-6/+16
Specifically: ast_map::ctx ast_util::id_range diagnostic::{handler_t,codemap_t} auto_encode::field ext::base::{macro_def,syntax_expander_tt,syntax_expander_tt_item} ext::pipes::proto::next_state
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+2
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-2/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+2
module scope. r=tjc
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-5/+11
contain at least two components. r=graydon
2012-12-19Remove the old serialization codeErick Tryzelaar-6/+0
Closes #3713.
2012-12-13Begin renaming serialization to std::serialize. (snapshot)Erick Tryzelaar-1/+7
2012-12-12syntax: remove remaining #syntaxext machinery. Close #3516.Graydon Hoare-102/+49
2012-12-12syntax: remove most code handling old-style syntax extensions.Graydon Hoare-13/+4
2012-12-12syntax: remove all remaining uses of #ast, and #ast / qquote itself.Graydon Hoare-2/+0
2012-12-07syntax: fix quote_type! to quote_ty!Graydon Hoare-2/+2
2012-12-07syntax: point quote tokens at the site of quote-using-extension invocation.Graydon Hoare-0/+7
2012-12-04librustc: Remove all legacy pattern bindings from libsyntax and librustc. ↵Patrick Walton-2/+2
rs=refactoring
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-11-29Make it possible to expand stmt macros.Paul Stansifer-8/+8
2012-11-29Make it possible to invoke item macros without passing identifier arguments.Paul Stansifer-6/+9
2012-11-29Allow `macro_rules!` macros to expand to expressions or items.Paul Stansifer-0/+1
2012-11-21libsyntax: Implement deriving via a syntax extension for the `IterBytes` ↵Patrick Walton-0/+3
trait. r=brson
2012-11-20rustc: Implement "deriving" for monomorphic structs via a syntax extension. ↵Patrick Walton-0/+3
r=brson
2012-11-17Merge remote-tracking branch 'brson/codemap'Brian Anderson-14/+17
Conflicts: src/libsyntax/ext/source_util.rs
2012-11-16syntax: rename quote! to quote_tokens!, add quote_{expr,type,item,pat,stmt}!Graydon Hoare-2/+15
r=brson, Close #3976.
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-1/+3
2012-11-14Camel case all the codemap types except spanBrian Anderson-9/+9
2012-11-13rustc: add new token-tree based quasiquoter.Graydon Hoare-0/+2
2012-11-12Remove expn_info box typedef from codemapBrian Anderson-5/+5
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-2/+2
2012-11-12Convert most codemap types from records to structsBrian Anderson-4/+5
2012-11-07rustc: Support irrefutable patterns in function arguments. r=nmatsakisPatrick Walton-7/+10
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-3/+3
2012-10-12Make moves explicit in libsyntaxTim Chevalier-1/+1
2012-10-12Replace several common macros of the form #m[...] with m!(...)Kevin Cantu-4/+4
This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages...
2012-10-08Revert "Revert "Remove old auto_serialize2 code (needs snapshot)""Tim Chevalier-60/+1
This reverts commit a33535e441dc5461fec0489069a1491367ad1c91.
2012-10-08Revert "Remove old auto_serialize2 code (needs snapshot)"Tim Chevalier-1/+60
This reverts commit 0bd6da8a8c93143325cb45e8a074ccf7121ca168.
2012-10-07Remove old auto_serialize2 code (needs snapshot)Erick Tryzelaar-60/+1
2012-10-07Remove the old serializers (needs snapshot)Erick Tryzelaar-10/+2
2012-10-07remove the old auto_serialize syntax extensionErick Tryzelaar-0/+64
2012-10-07migrate libsyntax/rustc to auto_serialize2Erick Tryzelaar-1/+1
2012-10-01Split auto_serialize2 into two macrosErick Tryzelaar-2/+6
2012-09-28Demode extfmtTim Chevalier-12/+12
Needs a snapshot before this can be completed, because I changed the mode for conv_poly.