about summary refs log tree commit diff
path: root/src/libsyntax/syntax.rc
AgeCommit message (Collapse)AuthorLines
2012-11-28Register snapshotsBrian Anderson-56/+27
2012-11-26Remove the crate languageBrian Anderson-2/+2
2012-11-20rustc: Implement "deriving" for monomorphic structs via a syntax extension. ↵Patrick Walton-0/+1
r=brson
2012-11-17Merge remote-tracking branch 'brson/codemap'Brian Anderson-1/+0
Conflicts: src/libsyntax/ext/source_util.rs
2012-11-13rustc: add new token-tree based quasiquoter.Graydon Hoare-0/+3
2012-11-12Convert codemap from legacy_exportsBrian Anderson-1/+0
2012-10-12bump version to 0.5.Graydon Hoare-3/+3
2012-10-08Revert "Revert "Remove old auto_serialize2 code (needs snapshot)""Tim Chevalier-3/+0
This reverts commit a33535e441dc5461fec0489069a1491367ad1c91.
2012-10-08Revert "Remove old auto_serialize2 code (needs snapshot)"Tim Chevalier-0/+3
This reverts commit 0bd6da8a8c93143325cb45e8a074ccf7121ca168.
2012-10-07Remove old auto_serialize2 code (needs snapshot)Erick Tryzelaar-3/+0
2012-10-07Remove the old serializers (needs snapshot)Erick Tryzelaar-1/+1
2012-10-07remove the old auto_serialize syntax extensionErick Tryzelaar-0/+1
2012-09-28Add allow(deprecated_\*) to syntax, rustc, rustdoc, et alBrian Anderson-0/+2
2012-09-26libsyntax: implement auto_serialize2 for enums, records, and structsErick Tryzelaar-0/+2
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+52
#[legacy_exports];
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-0/+2
2012-09-18Add allow(non_camel_case_types) to unconverted cratesBrian Anderson-0/+1
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-2/+2
2012-09-08libsyntax: Parse and report errors for a few obsolete syntaxesBrian Anderson-0/+3
2012-09-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+1
2012-08-30Bump version to 0.4Brian Anderson-3/+3
2012-08-24"earley_parser" -> "macro_parser" Let's be less confusing.Paul Stansifer-1/+1
2012-08-15Add trace_macros!Eric Holk-0/+2
2012-08-01Clean out transitional lint.Graydon Hoare-5/+0
2012-07-26Nomenclature fixes in the lint checker. Fewer double-negatives.Graydon Hoare-0/+5
New style is allow(foo), warn(foo), deny(foo) and forbid(foo), mirrored by -A foo, -W foo, -D foo and -F foo on command line. These replace -W no-foo, -W foo, -W err-foo, respectively. Forbid is new, and means "deny, and you can't override it".
2012-07-17Added liveness analysis for protocols, and removed warnings about empty states.Eric Holk-0/+1
2012-07-17Error checking for protocols. We'll need spans though.Eric Holk-0/+2
2012-07-11Fix some version numbers.Graydon Hoare-3/+3
2012-07-09Allow defining token tree macros. They should work now!Paul Stansifer-1/+3
2012-07-06pingpong protocol parses, although I should probably rewrite this to use ↵Eric Holk-1/+2
Paul's Early parser stuff.
2012-07-06You can have any protocol you want, provided it's pingpong.Eric Holk-1/+4
This integrates the pipe compiler into the proto syntax extension.
2012-07-06Plumbing and parsing for item-position macros.Eric Holk-0/+2
2012-07-05Move earley_parser.rs to a more appropriate placePaul Stansifer-1/+1
2012-07-05Some rearranging in perparation for MBE-style TT transcription.Paul Stansifer-0/+3
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-3/+3
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-06-25parsing for the macro systemPaul Stansifer-0/+3
2012-06-15Make token trees parseable.Paul Stansifer-0/+1
2012-06-04Make vecs implicitly copyable for all of our projects.Michael Sullivan-0/+2
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-0/+72
Per issue #2418.