| Commit message (Expand) | Author | Age | Files | Lines |
* | Use throw_type_error and throw_range_error from js. | Ms2ger | 2015-11-12 | 1 | -10/+5 |
* | Implement WebIDL sequence return values | Emilio Cobos Álvarez | 2015-11-11 | 1 | -1/+6 |
* | Support variadic interface arguments (fixes #8159) | Anthony Ramine | 2015-11-11 | 1 | -53/+50 |
* | Remove unused parameter in instantiateJSToNativeConversionTemplate() | Anthony Ramine | 2015-11-11 | 1 | -16/+7 |
* | Clean up the conversion routines | Anthony Ramine | 2015-11-11 | 1 | -16/+14 |
* | Auto merge of #8286 - eefriedman:no-move, r=nox | bors-servo | 2015-11-08 | 1 | -1/+0 |
|\ |
|
| * | Clean up some code related to #[no_move]. | Eli Friedman | 2015-11-07 | 1 | -1/+0 |
* | | Make DOMString a newtype around String, rather than a typedef. | Ms2ger | 2015-11-04 | 1 | -1/+1 |
* | | make test-tidy happy + fix some merge errors | rohan.prinja | 2015-11-03 | 1 | -3/+3 |
* | | merge from master | rohan.prinja | 2015-11-03 | 1 | -0/+4 |
|\| |
|
| * | Support unions that contain USVStrings. | Ms2ger | 2015-10-30 | 1 | -0/+4 |
* | | more refactoring | rohan.prinja | 2015-10-30 | 1 | -3/+4 |
|/ |
|
* | Auto merge of #8226 - froydnj:gc-zeal, r=Ms2ger | bors-servo | 2015-10-28 | 1 | -20/+20 |
|\ |
|
| * | move reserved slot setting for DOM globals | Nathan Froyd | 2015-10-27 | 1 | -4/+2 |
| * | reduce indentation in CodegenRust.py | Nathan Froyd | 2015-10-27 | 1 | -20/+22 |
* | | Auto merge of #8040 - froydnj:codegen-arg-info, r=jdm | bors-servo | 2015-10-28 | 1 | -2/+93 |
|\ \
| |/
|/| |
|
| * | generate JIT argument type information for methods | Nathan Froyd | 2015-10-27 | 1 | -2/+26 |
| * | add CGMemberJITInfo.{getJSArgType,getSingleArgType} | Nathan Froyd | 2015-10-27 | 1 | -0/+67 |
* | | Auto merge of #8132 - akiss77:codegen-u8, r=Ms2ger | bors-servo | 2015-10-21 | 1 | -3/+3 |
|\ \ |
|
| * | | Fix char types in script binding codegen | Akos Kiss | 2015-10-21 | 1 | -3/+3 |
* | | | Introduce trait Castable | Anthony Ramine | 2015-10-21 | 1 | -116/+9 |
* | | | Introduce IDLInterface::derives() | Anthony Ramine | 2015-10-21 | 1 | -24/+21 |
|/ / |
|
* / | Fix formatting for variable in doc-comment within codegen | Corey Farwell | 2015-10-17 | 1 | -2/+2 |
|/ |
|
* | Auto merge of #8020 - nox:codegen-derived, r=Ms2ger | bors-servo | 2015-10-15 | 1 | -1/+24 |
|\ |
|
| * | Generate all Derived implementations in codegen | Anthony Ramine | 2015-10-14 | 1 | -1/+24 |
* | | Auto merge of #7972 - nox:codegen-heapsize, r=Ms2ger | bors-servo | 2015-10-15 | 1 | -1/+4 |
|\ \ |
|
| * | | Introduce DOMClass::heap_size_of | Anthony Ramine | 2015-10-14 | 1 | -1/+4 |
| |/ |
|
* / | Support the updated spidermonkey bindings | Michael Wu | 2015-10-14 | 1 | -85/+87 |
|/ |
|
* | Generate the TypeId enums in codegen | Anthony Ramine | 2015-10-14 | 1 | -26/+79 |
* | Changed dom_class type to Option<&'static DOMClass> | Andriy Kunitsin | 2015-10-09 | 1 | -3/+3 |
* | Document RegisterBindings::RegisterProxyHandlers. | Ms2ger | 2015-10-07 | 1 | -1/+2 |
* | Add support for documenting CGAbstractMethods. | Ms2ger | 2015-10-07 | 1 | -3/+14 |
* | Don't generate useless InheritTypes interfaces | Anthony Ramine | 2015-10-02 | 1 | -51/+78 |
* | Remove deprecated 'creator' WebIDL attribute | Corey Farwell | 2015-09-21 | 1 | -4/+0 |
* | Python 'is' operator should not be used to check value | Corey Farwell | 2015-09-20 | 1 | -3/+3 |
* | Remove parens around Python 'assert' statement | Corey Farwell | 2015-09-20 | 1 | -7/+7 |
* | Introduce [Abstract] to mark non-leaf interfaces | Anthony Ramine | 2015-09-13 | 1 | -1/+1 |
* | Move EventTargetTypeId/NodeTypeId to DOMClass | Michael Wu | 2015-09-12 | 1 | -1/+21 |
* | Link to Servo issue instead of Gecko bug | Corey Farwell | 2015-09-10 | 1 | -1/+1 |
* | Auto merge of #7455 - nox:rm-unused-warnings, r=jdm | bors-servo | 2015-08-30 | 1 | -23/+27 |
|\ |
|
| * | Do not allow unreachable_code in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -4/+0 |
| * | Do not allow dead_code in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -1/+0 |
| * | Do not allow unused_parens in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -4/+3 |
| * | Do not allow unused_mut in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -7/+8 |
| * | Do not allow unused_unsafe in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -7/+16 |
* | | Auto merge of #7432 - jdm:dashedprops, r=nox | bors-servo | 2015-08-30 | 1 | -13/+24 |
|\ \
| |/
|/| |
|
| * | Add infrastructure for supporting dashed CSS property names on CSSStyleDeclar... | Josh Matthews | 2015-08-28 | 1 | -13/+24 |
* | | Prefer JSTrue/JSFalse to 1/0 | Corey Farwell | 2015-08-28 | 1 | -9/+9 |
|/ |
|
* | Make the traits for the IDL interfaces take &self | Anthony Ramine | 2015-08-27 | 1 | -1/+1 |
* | Auto merge of #7387 - Yoric:2240-2, r=Ms2ger | bors-servo | 2015-08-27 | 1 | -22/+29 |
|\ |
|