summary refs log tree commit diff
path: root/src/librustc/lint/context.rs
AgeCommit message (Expand)AuthorLines
2017-03-27Fix various useless derefs and slicingsOliver Schneider-3/+2
2017-03-23convert privacy access levels into a queryNiko Matsakis-3/+5
2017-03-19Auto merge of #40346 - jseyfried:path_and_tokenstream_attr, r=nrcbors-2/+2
2017-03-14Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`.Jeffrey Seyfried-2/+2
2017-03-13some style fixesTshepang Lekhonkhobe-4/+10
2017-03-10Allow lints to check Bodys directlyOliver Schneider-0/+6
2017-02-04note wording: lint implied by lint group, not lint group implies lintZack M. Davis-4/+4
2017-02-04note lint group set on command line triggering individual lintZack M. Davis-9/+19
2017-02-04note individual lint name set via lint group attribute in notesZack M. Davis-23/+30
2017-02-02store typeck lints in the `TypeckTables`Niko Matsakis-4/+24
2017-02-02introduce `LintTable`Niko Matsakis-11/+9
2017-01-26rustc: rename TyCtxt's `map` field to `hir`.Eduard-Mihai Burtescu-5/+5
2017-01-25rename `Tables` to `TypeckTables`Niko Matsakis-2/+2
2017-01-17Teach Diagnostics to highlight textEsteban Küber-1/+1
2017-01-14Merge branch 'master' into lint-attr-fixcomex-20/+28
2017-01-06rustc: keep track of tables everywhere as if they were per-body.Eduard-Mihai Burtescu-18/+28
2017-01-03Fix lint attributes on non-item nodes.comex-45/+12
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-6/+3
2016-12-06annotate stricter lifetimes on LateLintPass methods to allow them to forward ...Oliver Schneider-36/+36
2016-11-29revamp `Visitor` with a single method for controlling nested visitsNiko Matsakis-8/+4
2016-11-29Split nested_visit_mode function off from nested_visit_mapFlorian Diebold-4/+8
2016-11-29rustc: replace body exprs by their idsFlorian Diebold-10/+15
2016-11-28rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.Eduard-Mihai Burtescu-5/+0
2016-11-20Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s.Jeffrey Seyfried-13/+7
2016-11-20Refactor away `ast::Attribute_`.Jeffrey Seyfried-1/+1
2016-11-16add a `nested_visit_map` methodNiko Matsakis-35/+31
2016-11-16fallout from separating impl-items from implsNiko Matsakis-2/+7
2016-11-11Auto merge of #37456 - estebank:unused-imports-verbosity, r=jonathandturnerbors-4/+7
2016-11-10rustc: use an Expr instead of a Block for function bodies.Eduard Burtescu-1/+1
2016-11-10syntax: don't fake a block around closures' bodies during parsing.Eduard Burtescu-4/+4
2016-11-08Group unused import warnings per path listEsteban Küber-4/+7
2016-11-08Replace FnvHasher use with FxHasher.Nicholas Nethercote-11/+11
2016-11-01improve early lint to use multispan from diagnosticNiko Matsakis-34/+15
2016-11-01move early lint over to multispanNiko Matsakis-21/+21
2016-11-01compare-method lintNiko Matsakis-11/+32
2016-11-01retool EarlyLint to track a DiagnosticNiko Matsakis-8/+17
2016-11-01introduce EarlyLint typeNiko Matsakis-10/+51
2016-10-31Changed most vec! invocations to use square bracesiirelu-5/+5
2016-10-26deduplicate one-time diagnostics on lint ID as well as span and messageZack M. Davis-1/+1
2016-10-15introing one-time diagnostics: only emit "lint level defined here" onceZack M. Davis-2/+1
2016-08-28Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrcJeffrey Seyfried-1/+1
2016-08-28Rollup merge of #35850 - SergioBenitez:master, r=nrcJeffrey Seyfried-7/+5
2016-08-27Rollup merge of #35989 - 0xmohit:pr/error-code-E0453, r=jonathandturnerJonathan Turner-2/+3
2016-08-26Update E0453 to new error formatMohit Agarwal-2/+3
2016-08-25Refactor away `AttrMetaMethods`.Jeffrey Seyfried-1/+1
2016-08-25Refactor away `AttrNestedMetaItemMethods`.Jeffrey Seyfried-1/+1
2016-08-25Implement RFC#1559: allow all literals in attributes.Sergio Benitez-7/+5
2016-08-23Use idiomatic names for string-related methods names.Corey Farwell-3/+3
2016-07-30diagnostically note source of overruling outer forbidZack M. Davis-6/+16
2016-07-30Rollup merge of #35090 - michaelwoerister:get-rid-of-id-visitor, r=eddybManish Goregaokar-11/+25