about summary refs log tree commit diff
path: root/src/comp/front
AgeCommit message (Expand)AuthorLines
2011-04-19Remove effect system from src.Graydon Hoare-193/+168
2011-04-19replace error logging with log_err in stdlib and rustcMarijn Haverbeke-33/+30
2011-04-19add log_err to rustcMarijn Haverbeke-3/+13
2011-04-18Support 0 flag in #fmtBrian Anderson-7/+14
2011-04-18collect crate meta info and ext crate namesMarijn Haverbeke-6/+9
2011-04-17Support the space flag in #fmtBrian Anderson-19/+35
2011-04-17Support + flag in #fmtBrian Anderson-3/+27
2011-04-17Support #fmt precision for string typesBrian Anderson-2/+8
2011-04-16Support left-justification in #fmt conversionsBrian Anderson-9/+56
2011-04-16Make #fmt support explicit conversion widthsBrian Anderson-4/+36
2011-04-14Work on destructors, not entirely functional yet (no tydesc integration).Graydon Hoare-4/+22
2011-04-13Add support for upper-case hex and binary output to #fmt.Brian Anderson-0/+3
2011-04-13Add more commentary about ExtFmtBrian Anderson-14/+7
2011-04-13Add support for printing uints as lower-case hex to ExtFmt.Brian Anderson-13/+78
2011-04-13Move #fmt conversion model into ExtFmt.CT namespaceBrian Anderson-29/+28
2011-04-13Lex numeric escapes, needed for lib-str.rs (which now passes).Graydon Hoare-13/+77
2011-04-12typestate_check can now handle expr_block, expr_if, and expr_binaryTim Chevalier-2/+3
2011-04-12rustc: Switch to indices for type parametersPatrick Walton-18/+16
2011-04-12Further work on typestate. Handles expr_rec and expr_assign now.Tim Chevalier-9/+13
2011-04-11Factor out creation of calls into ExtFmt.RTBrian Anderson-12/+12
2011-04-11Add support for bool, char to extfmt.Brian Anderson-0/+10
2011-04-11Move ExtFmt compile-time functions into their own moduleBrian Anderson-1/+1
2011-04-11Make ExtFmt call its own functions instead of others defined in stdBrian Anderson-6/+4
2011-04-11Move extfmt parsing into standard libraryBrian Anderson-210/+1
2011-04-11Move the extfmt data model into the standard library.Brian Anderson-48/+30
2011-04-09Fix codemap.lookup_posMarijn Haverbeke-15/+12
2011-04-09Move to single-uint file-position representation.Marijn Haverbeke-319/+374
2011-04-09Make lexer buffer the whole fileMarijn Haverbeke-59/+66
2011-04-07Support for self-calls that take arguments.Lindsey Kuper-4/+11
2011-04-07Add a very basic crate-dump utilityMarijn Haverbeke-0/+66
2011-04-07Revise EBML reader APIMarijn Haverbeke-191/+122
2011-04-06Continued sketching out code for checking states against preconditions.Tim Chevalier-10/+11
2011-04-05Last pieces of self-call support.Lindsey Kuper-1/+1
2011-04-05Further on the path toward self-awareness.Lindsey Kuper-2/+6
2011-04-04Make box prefix operator and box type carry mutability flag.Graydon Hoare-3/+7
2011-04-01Support for passing native types through metadata/creader.Graydon Hoare-0/+2
2011-04-01rustc: Get tag variants from the crate metadataPatrick Walton-6/+49
2011-04-01Started adding support for typestate checking.Tim Chevalier-28/+31
2011-03-31rustc: Add a type annotation to tag itemsPatrick Walton-4/+5
2011-03-31rustc: Use the path index. Speeds up compilation a lot.Patrick Walton-91/+48
2011-03-31rustc: Write out a path index as wellPatrick Walton-8/+7
2011-03-31Couple minor bug fixes in creader, lib-bitv, int, rand, sort, sha1, uint and ...Graydon Hoare-0/+8
2011-03-31rustc: Use the crate index to look up defsPatrick Walton-29/+26
2011-03-31rustc: Write out an index of definition info in crate metadataPatrick Walton-10/+9
2011-03-31Remove redundant parser logic.Brian Anderson-33/+0
2011-03-31handle unterminated block comments and line comment at eofMarijn Haverbeke-4/+9
2011-03-31Improve line comment positioningMarijn Haverbeke-6/+11
2011-03-31Support break and cont in pretty-printerMarijn Haverbeke-0/+2
2011-03-31Add effect field to ast.ty_fn.Marijn Haverbeke-15/+13
2011-03-31Preserve comments when pretty-printing.Marijn Haverbeke-1/+83