summary refs log tree commit diff
path: root/src/rustc/driver/session.rs
AgeCommit message (Collapse)AuthorLines
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-1/+4
2012-07-02Merge remote-tracking branch 'Dretch/prettydocs'Brian Anderson-1/+2
Conflicts: src/compiletest/errors.rs src/libsyntax/parse/attr.rs src/libsyntax/parse/comments.rs src/test/compile-fail/ambig_impl_unify.rs src/test/compile-fail/assign-super.rs src/test/compile-fail/bad-for-loop.rs src/test/compile-fail/bad-var-env-capture-in-block-arg.rs src/test/compile-fail/block-arg-as-stmt-with-value.rs src/test/compile-fail/borrowck-assign-comp-idx.rs src/test/compile-fail/borrowck-lend-flow.rs src/test/compile-fail/borrowck-loan-blocks-move-cc.rs src/test/compile-fail/borrowck-loan-blocks-mut-uniq.rs src/test/compile-fail/borrowck-loan-rcvr.rs src/test/compile-fail/borrowck-loan-vec-content.rs src/test/compile-fail/borrowck-mut-vec-as-imm-slice-bad.rs src/test/compile-fail/cap-clause-with-stack-closure.rs src/test/compile-fail/do1.rs src/test/compile-fail/do2.rs src/test/compile-fail/empty-vec-trailing-comma.rs src/test/compile-fail/evec-subtyping.rs src/test/compile-fail/issue-1896.rs src/test/compile-fail/issue-2149.rs src/test/compile-fail/issue-2150.rs src/test/compile-fail/issue-2487-b.rs src/test/compile-fail/kindck-implicit-close-over-mut-var.rs src/test/compile-fail/liveness-issue-2163.rs src/test/compile-fail/liveness-use-in-index-lvalue.rs src/test/compile-fail/no-reuse-move-arc.rs src/test/compile-fail/no-send-res-ports.rs src/test/compile-fail/non-const.rs src/test/compile-fail/pure-higher-order.rs src/test/compile-fail/pure-loop-body.rs src/test/compile-fail/regions-addr-of-upvar-self.rs src/test/compile-fail/regions-escape-loop-via-vec.rs src/test/compile-fail/regions-scoping.rs src/test/compile-fail/seq-args.rs src/test/compile-fail/tstate-unsat-in-called-fn-expr.rs src/test/compile-fail/tstate-unsat-in-fn-expr.rs src/test/compile-fail/vec-add.rs src/test/compile-fail/vec-concat-bug.rs src/test/compile-fail/vector-no-ann.rs
2012-06-30initial draft of fix for issue #2498:Gareth Daniel Smith-1/+2
1. make /// ... and //! ... and /** ... */ and /*! ... */ into sugar for #[doc = ...] attributes. 2. add a script in etc/ to help converting doc-attributes to doc-comments 3. add some functions to core::str to help with (1)
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-15/+15
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-14/+14
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-1/+1
2012-06-19rustc: Add a temporary option to not link to the runtimeBrian Anderson-2/+6
2012-06-13Box AST identsBrian Anderson-3/+3
2012-06-08remove alias analysis and replace with borrowckNiko Matsakis-5/+1
This reverts commit 7ef825bb607c4e934c92bd0b73ecbc4c24f3286b.
2012-06-07Revert "remove alias analysis and replace with borrowck"Brian Anderson-1/+5
18s perf regression compiling rustc with opts This reverts commit 7f6ee0ce0df8af4c21b065cb49b95079ae643f77.
2012-06-07remove alias analysis and replace with borrowckNiko Matsakis-5/+1
cc #2540
2012-06-04Heavily rework lint infrastructure. Split it into two passes: one that ↵Michael Sullivan-1/+18
builds the table and one that does the checks. Build the table early and make session know about it fo reasy use.
2012-05-29rustc: Move filesearch into metadata modBrian Anderson-1/+1
It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading.
2012-05-22rustc: Eliminate some session deps from metadata::loaderBrian Anderson-0/+11
2012-05-22syntax: Add diagnostic::expectBrian Anderson-4/+1
2012-05-18add a new debugging aid--tracingNiko Matsakis-1/+4
2012-05-18use -Z to distinguish internal debugging optionsNiko Matsakis-14/+33
2012-05-15make poison-on-free work, disable copying if borrowck is enabledNiko Matsakis-1/+4
2012-05-09implement new borrow ck (disabled by default)Niko Matsakis-1/+3
2012-05-08rustc: Extract session::basic_options from rustdocBrian Anderson-0/+29
2012-04-18syntax: Put the main parser interface in mod parseBrian Anderson-2/+2
2012-04-17new debug flag, new testNiko Matsakis-1/+2
2012-04-15syntax: Cleanup attr module. Closes #1545Brian Anderson-1/+1
2012-04-12Support general warnings and errors in lint pass via flags and attrs. Close ↵Graydon Hoare-3/+2
#1543.
2012-03-29rustc: Remove the rustsyntax::attr wrapper in frontBrian Anderson-1/+1
2012-03-29rustc: Add an accessor to get the diagnostic handler from the sessionBrian Anderson-0/+3
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-2/+2
2012-03-22Add an LLVM-instruction-counting mode to trans.Graydon Hoare-0/+1
Pipe to xdu to see a trans call graph of generated insns.
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-3/+2
2012-03-20Class methods WIPTim Chevalier-0/+8
In particular, use the ast::method type to represent a class method, and try to reuse as much iface code as possible. (This makes sense now since I'll be allowing polymorphic class methods.)
2012-03-15Turn on monomorphization by defaultMarijn Haverbeke-1/+0
2012-03-06make inline enabled by defaultNiko Matsakis-1/+0
2012-03-02Move src/comp to src/rustcGraydon Hoare-0/+210