about summary refs log tree commit diff
path: root/src/rustc/middle/lint.rs
AgeCommit message (Expand)AuthorLines
2012-11-07Rename src/rustc to src/librustc. Use the driver crateBrian Anderson-914/+0
2012-11-06Cleanup how we handle proto in types, remove unsound subtypingNiko Matsakis-18/+4
2012-11-05rustc: Implement parsing and typechecking for "once fn"Patrick Walton-3/+3
2012-10-24Cleaned up formatting and fixed bug in rev_binopViktor Dahl-105/+119
2012-10-24Implemented '-W type-limits' (#3833)Viktor Dahl-0/+109
2012-10-15rustc: Merge module and type namespaces. r=brsonPatrick Walton-3/+3
2012-10-02Removing explicit uses of + modeTim Chevalier-2/+6
2012-10-02Don't warn about non-camel-case types by defaultBrian Anderson-1/+1
2012-10-01In lint, don't complain about infer mode if legacy modes aren't enabledTim Chevalier-9/+12
2012-09-28Demoding in iter: any, all, map_to_vec, flat_map_to_vec, filter_to_vecTim Chevalier-1/+1
2012-09-28rename iter2 to each2, make it follow iterator protocolNiko Matsakis-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-09-25Fix long lineTim Chevalier-1/+1
2012-09-25Check more things with deprecated_modesBrian Anderson-31/+96
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-18/+0
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+18
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-5/+5
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-3/+3
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially dem...Niko Matsakis-1/+1
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-1/+1
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-1/+8
2012-09-18Change 'must' to 'should' in non_camel_case_types messageBrian Anderson-2/+3
2012-09-17warn(non_camel_case_types) by defaultBrian Anderson-1/+1
2012-09-11Promote 'struct' from a restricted keyword to a strict keywordBrian Anderson-2/+2
2012-09-10Convert std::map to camel caseBrian Anderson-4/+4
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+2
2012-09-07Refactor fn_ty, working towards #3320Niko Matsakis-1/+1
2012-09-05Add a lint pass for structural recordsTim Chevalier-0/+24
2012-09-04std: Camel case smallintmapBrian Anderson-3/+3
2012-09-04Remove 'with'Brian Anderson-12/+12
2012-09-04rustc: "import" -> "use"Patrick Walton-13/+13
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+12
2012-08-28Add lint modes for uses of @ and ~ pointers, in general.Graydon Hoare-1/+86
2012-08-27rustc: more pattern cleanupErick Tryzelaar-2/+2
2012-08-26Camel case the option typeBrian Anderson-10/+10
2012-08-25rustc: Implement foreign constants.Patrick Walton-0/+1
2012-08-24extend liveness to treat bindings more like other variablesNiko Matsakis-2/+18
2012-08-23Remove purity from fn_decl and move it out to containing AST elements.Michael Sullivan-1/+1
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-13/+13
2012-08-22Parse and typecheck moving out of enums (#2329)Ben Blum-1/+1
2012-08-22intern identifiersPaul Stansifer-13/+11
2012-08-22Eliminate many match checks in rustcTim Chevalier-18/+3
2012-08-15lint: Allow leading underscores on camel case typesBrian Anderson-5/+16
2012-08-15Convert more core types to camel caseBrian Anderson-1/+1
2012-08-14Convert more core types to camel caseBrian Anderson-1/+1
2012-08-08lint: Don't warn about non-camel case impl namesBrian Anderson-1/+1
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-2/+2
2012-08-08lint: Allow trailing underscores in camel case identsBrian Anderson-1/+12
2012-08-07add lint mode for deprecated pattern usageNiko Matsakis-6/+36