about summary refs log tree commit diff
path: root/src/libsyntax/parse.rs
AgeCommit message (Collapse)AuthorLines
2012-11-28Remove uses of #[merge]Brian Anderson-196/+0
2012-11-28Remove parser hackBrian Anderson-11/+0
2012-11-26Remove the crate languageBrian Anderson-34/+11
2012-11-26Add a temporary hack to divert the parser to an alternate fileBrian Anderson-0/+12
2012-11-20syntax: switch tt quoter to emit ~[tt], not tt.Graydon Hoare-4/+15
2012-11-18Remove unused file_type enum from the parserBrian Anderson-16/+10
2012-11-18Report errors better when failing to open files for sub-parsersBrian Anderson-15/+44
2012-11-16Remove unused types from codemapBrian Anderson-1/+1
2012-11-16Stop tracking CodeMap offsets in the parse session. Big simplificationBrian Anderson-58/+23
2012-11-16Stop storing char positions in CodeMapBrian Anderson-13/+6
2012-11-15Refactor the lexer to use FilePos typesBrian Anderson-7/+15
2012-11-14Create CodeMap.add_filemapBrian Anderson-2/+2
2012-11-14Track character and byte positions together in the parserBrian Anderson-22/+20
2012-11-14Add types for character position and byte position in the codemapBrian Anderson-5/+5
2012-11-14Camel case all the codemap types except spanBrian Anderson-10/+10
2012-11-12Objectify the codemapBrian Anderson-2/+2
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-3/+3
2012-11-12Move filemap ctors to static methodsBrian Anderson-3/+4
2012-11-12Remove filemap box typedef from codemapBrian Anderson-2/+2
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-12/+12
2012-09-26core: Replace map/map_default with map_ref/map_default_refBrian Anderson-1/+1
2012-09-26turn ast::ident into a structErick Tryzelaar-1/+1
This will help with the auto_serialize2 migration. We have to change ident from a type alias to uint into a unique type. We need to use a struct instead of a "enum ident = token::str_num" because structs support constants, but newtypes do not.
2012-09-23core: Demode optionBrian Anderson-1/+1
2012-09-18make filetype() include the "." (fixes #3412)Niko Matsakis-2/+2
2012-09-10Make all moves explicit in libsyntaxTim Chevalier-3/+3
2012-09-08libsyntax: Parse and report errors for a few obsolete syntaxesBrian Anderson-0/+6
2012-09-04libsyntax: "import" -> "use"Patrick Walton-8/+8
2012-08-27Convert core::result to camel caseBrian Anderson-2/+2
2012-08-26Camel case the option typeBrian Anderson-5/+5
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-12/+13
2012-08-22Centralize ident interner generation.Paul Stansifer-11/+10
2012-08-15rustc: "as Trait" can now be written "as @Trait".Patrick Walton-3/+3
There is also code for ~Trait and &Trait, but these are currently (incorrectly) synonyms for "as @Trait" and "as &Trait".
2012-08-08Convert impls to new syntaxBrian Anderson-3/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-1/+1
2012-08-05Switch alts to use arrowsBrian Anderson-2/+2
2012-08-03rustc: Add the notion of inherited visibilityPatrick Walton-2/+1
2012-08-01Convert ret to returnBrian Anderson-15/+15
2012-07-25Compiled a bounded version of pingpong.Eric Holk-0/+12
There are some failures in the other pipe tests, but these seem to just be a matter of generalizing the library code. Updating pipes library so all tests pass again
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-23/+23
#2907.
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-9/+9
2012-07-09rustc: Switch over to resolve3Patrick Walton-5/+2
2012-07-09Revert "rustc: Switch over to resolve3" due to Linux failuresPatrick Walton-2/+5
This reverts commit 2c0aa257e293dde91042a8045100d9923d139a04.
2012-07-09rustc: Switch over to resolve3Patrick Walton-5/+2
2012-07-09rustc: Switch to the new resolution passPatrick Walton-4/+2
2012-07-06Revert "rustc: Switch to the new resolution pass"Niko Matsakis-2/+4
This reverts commit c4af6e92fbae171c56a4e68666025725555fc9d8. Branch was burning...many, many unresolved imports.
2012-07-06rustc: Switch to the new resolution passPatrick Walton-4/+2
2012-07-06Plumbing and parsing for item-position macros.Eric Holk-2/+4
2012-07-05Some rearranging in perparation for MBE-style TT transcription.Paul Stansifer-3/+6
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-1/+1
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-02rustc: Implement a new resolve pass behind a compile flagPatrick Walton-2/+2