Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | auto merge of #4541 : Manishearth/servo/ban-stuff, r=jdm | bors-servo | 2015-01-08 | 3 | -0/+41 | |
|\ \ | |/ |/| | | | Didn't do the `Vec<Temporary<T>>` banning since we might want to whitelist something there. I'll work on that next. | |||||
| * | Ban Cell<JS<T>> and Cell<JSVal<T>> (partial #4336) | Manish Goregaokar | 2015-01-04 | 3 | -0/+41 | |
| | | ||||||
* | | Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19. | Ms2ger | 2015-01-08 | 7 | -17/+10 | |
|/ | ||||||
* | Remove spurious spaces from lints/mod.rs. | Ms2ger | 2015-01-01 | 1 | -5/+5 | |
| | ||||||
* | break up lints.rs into separate files | Rohan Prinja | 2015-01-01 | 9 | -378/+430 | |
| | ||||||
* | plugins: Add seanmonstar's to_string() lint | Manish Goregaokar | 2014-12-31 | 2 | -0/+39 | |
| | ||||||
* | Move the define_css_keyword_enum macro to the style crate. | Simon Sapin | 2014-12-29 | 1 | -46/+0 | |
| | ||||||
* | Add a match_ignore_ascii_case! macro that does not allocate. | Simon Sapin | 2014-12-29 | 2 | -6/+25 | |
| | | | | | | | | | | It should replace `match foo.to_ascii_lower().as_slice() { ...}` @Manishearth I changed map.get to map.find in the lint to work around an ICE: task 'rustc' panicked at 'couldn't find node id 0 in the AST map' Does this look OK? | |||||
* | Implement ToCss for types in style::properties::common_values::specified | Simon Sapin | 2014-12-29 | 1 | -0/+46 | |
| | ||||||
* | auto merge of #4173 : Manishearth/servo/a-more-dom-struct, r=kmcallister | bors-servo | 2014-12-27 | 5 | -6/+214 | |
|\ | | | | | | | | | | | Now `#[dom_struct]` also generates Reflectable impls, and there's another lint to ensure that a DOM struct only contains one bare DOM field (as the first field) or a Reflector. A lot of this was generated by sed -- each autogenerated change has its own commit for easy review; these will be squashed later. | |||||
| * | Fix warnings post-upgrade | Manish Goregaokar | 2014-12-27 | 2 | -5/+5 | |
| | | ||||||
| * | Ensure that Reflectors are the first field | Manish Goregaokar | 2014-12-27 | 1 | -3/+12 | |
| | | ||||||
| * | Add inheritance-checking lint | Manish Goregaokar | 2014-12-27 | 5 | -12/+122 | |
| | | ||||||
| * | Add internal plugin for creating Reflectable implementations | Manish Goregaokar | 2014-12-27 | 4 | -1/+88 | |
| | | ||||||
| * | Use inline(always) for trace() | Manish Goregaokar | 2014-12-27 | 1 | -1/+3 | |
| | | ||||||
* | | plugins: Fix transmute lint message | Manish Goregaokar | 2014-12-27 | 1 | -1/+1 | |
|/ | ||||||
* | Remove usage of deprecated HashMap::get_copy | Simon Sapin | 2014-12-18 | 1 | -1/+1 | |
| | ||||||
* | Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d. | Ms2ger | 2014-12-17 | 1 | -1/+0 | |
| | ||||||
* | Return early and decline analysis when linting within unsafe functions for ↵ | Chris Manchester | 2014-12-09 | 1 | -3/+51 | |
| | | | | | | must_root analysis. Removes a handful of whitelist annotations obsoleted by this change. fixes #3658 | |||||
* | Remove bitfield! macro in favour of bitflags! | Claes 'Letharion' Gyllensvärd | 2014-11-18 | 2 | -23/+0 | |
| | ||||||
* | Rust upgrade to rustc hash b03a2755193cd756583bcf5831cf4545d75ecb8a | Jack Moffitt | 2014-11-13 | 2 | -4/+5 | |
| | ||||||
* | Silence lint for self.global in XHR | Manish Goregaokar | 2014-11-06 | 1 | -1/+1 | |
| | ||||||
* | Catch all types of local bindings in check_stmt | Manish Goregaokar | 2014-11-06 | 1 | -6/+19 | |
| | ||||||
* | Add documentation to plugins crate | Manish Goregaokar | 2014-11-06 | 4 | -8/+44 | |
| | ||||||
* | Remove suggestion to use #[must_root] for functions | Manish Goregaokar | 2014-10-31 | 1 | -1/+1 | |
| | ||||||
* | Make auto-derived JSTraceable have #[inline] methods | Manish Goregaokar | 2014-10-16 | 1 | -2/+1 | |
| | ||||||
* | Add unifying #[dom_struct] attribute (fixes #3667) | Manish Goregaokar | 2014-10-16 | 2 | -3/+15 | |
| | ||||||
* | Add #[privatize] to allow enforcing private fields for struct definitions | Tim Taubert | 2014-10-13 | 2 | -1/+25 | |
| | ||||||
* | Upgrade to rustc d2b30f7d3 2014-09-23 | Simon Sapin | 2014-09-29 | 2 | -3/+3 | |
| | ||||||
* | Merge pull request #3480 from zwarich/trailing-whitespace | bors-servo | 2014-09-25 | 1 | -1/+2 | |
|\ | | | | | | | | | | | Fix trailing whitespace tidy errors Reviewed-by: larsbergstrom | |||||
| * | Fix trailing whitespace tidy errors | Cameron Zwarich | 2014-09-25 | 1 | -1/+2 | |
| | | ||||||
* | | Add the MPL back to components/plugins/lints.rs | Cameron Zwarich | 2014-09-25 | 1 | -0/+4 | |
|/ | | | | This license was accidentally removed in 5b866e9e. | |||||
* | Address review comments | Manish Goregaokar | 2014-09-24 | 1 | -9/+6 | |
| | ||||||
* | Use JSTraceable everywhere | Manish Goregaokar | 2014-09-24 | 1 | -14/+1 | |
| | ||||||
* | Add #[jstraceable] syntax extension | Manish Goregaokar | 2014-09-24 | 2 | -3/+81 | |
| | ||||||
* | Fix CEF | Manish Goregaokar | 2014-09-23 | 3 | -48/+3 | |
| | ||||||
* | Add license headers | Manish Goregaokar | 2014-09-23 | 3 | -2/+15 | |
| | ||||||
* | Rename macros crate to plugins | Manish Goregaokar | 2014-09-23 | 5 | -0/+238 | |