aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen
Commit message (Collapse)AuthorAgeFilesLines
* Rename the PrototypeList enums to fix case build warnings.Ms2ger2014-12-181-14/+14
|
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-40/+38
|
* Fixed codegen error regarding Uint8ClampedArrayEdit Balint2014-12-161-3/+2
|
* Fix spelling mistakes in comments.Joseph Crail2014-12-111-4/+4
|
* Make callers of `${Derived}::${base}()` use casts instead.Tetsuharu OHZEKI2014-11-281-3/+9
|
* Fix binding generation for Callback Functions and Callback InterfacesMukilan Thiyagarajan2014-11-151-331/+76
|
* Fix interfaces testKeegan McAllister2014-11-131-0/+9
|
* Add KeyboardEvent stub.Josh Matthews2014-11-132-9/+8
|
* Rust upgrade to rustc hash b03a2755193cd756583bcf5831cf4545d75ecb8aJack Moffitt2014-11-131-29/+29
|
* Remove VoidVal.Ms2ger2014-11-081-1/+0
| | | | There are no undefined constants in IDL.
* Remove warning from 'deleter' WebIDL codegenBruno de Oliveira Abinader2014-11-061-3/+0
|
* Couple more fixes to handle 'setter' properties in WebIDLBruno de Oliveira Abinader2014-11-061-5/+10
|
* Various fixes to CodegenRust.pyBruno de Oliveira Abinader2014-11-031-4/+5
|
* Implement [LenientThis] support and enable it in Document.webidlMukilan Thiyagarajan2014-10-251-7/+7
| | | | Closes issue #3760
* Move jsstring_to_str and jsid_to_str to conversions.rs.Ms2ger2014-10-161-1/+1
| | | | | | This appears to be a more sensible location for them. Relevant to #433.
* Add a to_js method to the casting trait code in CodegenRust.pyKasey Carrothers2014-10-141-0/+11
| | | | | | Replace the manual checks and calls to transmute_copy in /layout/wrapper.rs with calls to to_js Fixes #3616
* script: Use atom comparison in more places, especially for attributes.Patrick Walton2014-10-141-0/+1
| | | | 75% improvement in style recalc for Guardians of the Galaxy.
* auto merge of #3666 : ttaubert/servo/issue/3644-privatize-dom, r=Manishearthbors-servo2014-10-131-1/+1
|\ | | | | | | | | | | This PR removes public fields from all (hope I didn't miss any) DOM structs. Should |Page| be privatized as well? This PR additionally introduces a #[privatize] lint to ensure nobody accidentally re-introduces a public field. All changesets compile separately if applied in the same order. Hope that helps reviewing but I can of course squash them before merging.
| * Privatize InheritTypesTim Taubert2014-10-131-1/+1
| |
* | Remove support for {return,native,concrete}Type overrides in Bindings.conf.Ms2ger2014-10-102-13/+10
|/ | | | | We have no reason to support non-default type names, and this commit corrects the computations for callbacks (which needed the override until now).
* Remove unnecessary `deref()`s (fixes #3586)Tim Taubert2014-10-091-2/+2
|
* Remove unused cx_for_dom_object function.Ms2ger2014-09-251-1/+1
|
* Move global_object_for_js_object to global.rs.Ms2ger2014-09-251-1/+1
| | | | This appears to be a more sensible place for it (related to #433).
* Use JSTraceable everywhereManish Goregaokar2014-09-241-13/+4
|
* Remove the glob import for UnionTypes.Ms2ger2014-09-211-3/+2
|
* Share code to compute the type of a union.Ms2ger2014-09-211-5/+9
| | | | This does not change the generated code.
* Don't use a glob import for codegen::{PrototypeList, RegisterBindings}.Ms2ger2014-09-211-1/+1
|
* Eliminate warningsKeegan McAllister2014-09-201-5/+5
|
* Upgrade to rustc 0.12.0-pre (4d2af3861 2014-09-17 15:51:11 +0000)Keegan McAllister2014-09-201-3/+3
|
* More progress in the &JSRef -> JSRef conversionCameron Zwarich2014-09-201-2/+2
| | | | | Change all of the <Class>Methods traits to take `self` instead of `&self`.
* First steps of &JSRef -> JSRef conversionCameron Zwarich2014-09-191-23/+26
| | | | | | | | | Replace &JSRef with JSRef in the bulk of the generated code. This will remove a level of indirection throughout all DOM code. This patch doesn't change methods implemented on JSRef<T> to take `self` rather than `&self`, and it leaves a few other uses of &JSRef, but those changes can be made incrementally.
* Merge pull request #3253 from ChrisParis/TreeWalkerJosh Matthews2014-09-191-0/+4
|\ | | | | Implement TreeWalker
| * Implement TreeWalkerChris Paris2014-09-181-0/+4
| |
* | Remove uses of &mut JSRefCameron Zwarich2014-09-181-13/+0
|/ | | | | Since everything with JSRef happens with interior mutability, it doesn't make any sense to use an &mut JSRef.
* Revert "script: Use atom comparison in more places, especially for ↵Josh Matthews2014-09-181-1/+0
| | | | | | attributes." for persistent test failures. This reverts commit 874db261046d6155b1942efa106d2e0014295d6d.
* script: Use atom comparison in more places, especially for attributes.Patrick Walton2014-09-171-0/+1
| | | | 75% improvement in style recalc for Guardians of the Galaxy.
* Add unrooted_must_root lint for enums and structs containing JS<T>, as well ↵Manish Goregaokar2014-09-161-1/+4
| | | | | | | as functions with JS<T> in their parameter list For safe wrappers over JS<T> (eg Temporary<T>) use #[allow(unrooted_must_root)]. For all other types containing a #[must_root] value, annotate the type with #[must_root] to ensure that it is never used unrooted
* Cargoify servoJack Moffitt2014-09-08103-0/+30131