aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_plugins/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Auto merge of #23405 - Eijebong:weedle, r=jdmbors-servo2019-05-201-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | Switch from webidl to weedle in script_plugins This removes the dependency on lalrpop and should speed up compilation quite a bit. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23405) <!-- Reviewable:end -->
| * Switch from webidl to weedle in script_pluginsBastien Orivel2019-05-151-1/+1
| | | | | | | | | | This removes the dependency on lalrpop and should speed up compilation quite a bit.
* | Upgrade to rustc 1.36.0-nightly (a9ec99f42 2019-05-13)Simon Sapin2019-05-141-6/+54
|/
* Parse webidl files and lint for inheritance correctness.krk2019-04-201-0/+2
|
* Can collect webidl paths.krk2019-04-201-0/+7
|
* Exempt Rc<Promise> from unrooted_must_rootManish Goregaokar2019-01-041-0/+1
| | | | fixes #22504
* Upgrade to rustc 1.33.0-nightly (fb86d604b 2018-12-27)Simon Sapin2018-12-281-1/+0
|
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Format components/script_pluginschansuke2018-09-131-2/+0
|
* Upgrade to rustc 1.30.0-nightly (721913067 2018-08-26)Simon Sapin2018-08-271-1/+0
|
* Upgrade to rustc 1.28.0-nightly (524ad9b9e 2018-05-29)Anthony Ramine2018-05-301-0/+1
| | | | Fixes https://github.com/servo/servo/issues/20844
* Make the unrooted_must_root conditional on a default Cargo feature.Simon Sapin2017-11-021-0/+8
| | | | | Only http://perf.rust-lang.org/ will disable it, in order to be less subject to changes to rustc internal APIs.
* Fix new failure in Nightly 2017-11-01.Simon Sapin2017-11-011-0/+1
| | | | The rustc::declare_lints! macro started using a :vis fragment specifier.
* Remove usage of unstable box syntax, except in the script crateSimon Sapin2017-10-121-2/+1
| | | | | … because there’s a lot of it, and script still uses any other unstable features anyway.
* Split feature gates into lines for easy greppingMatt Brubeck2017-09-211-1/+4
|
* Stop using unstable slice_patterns featureMatt Brubeck2017-05-011-1/+1
|
* Rewrite the ban-type lint in PythonJefry Lagrange2017-02-251-2/+0
| | | | | | Delete old rust ban lint and move tests to python tidy Fix ban lint regex and fix test
* Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-10/+1
|
* Move script lints to script_pluginsAnthony Ramine2017-02-161-0/+48
The plugins crate now just allows to hook into clippy from a single crate.