Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't define empty FooMethods traits. | Ms2ger | 2015-03-13 | 1 | -5/+8 |
| | |||||
* | Remove unused lifetime parameters to dictionaries. | Ms2ger | 2015-03-13 | 1 | -6/+6 |
| | | | | They were used for Root members, but those no longer use lifetimes. | ||||
* | Fix #2108 by renaming unwrap functions to native_from_reflector | Chris Double | 2015-03-12 | 1 | -4/+4 |
| | | | | | | | | | | As noted by @bholley. "unwrap" is confusing because we are both stripping off wrappers *and* getting a native from a reflector. Changing the "unwrap" usage to "native_from_reflector" for clarity. This renames 'unwrap' to 'native_from_reflector' and 'unwrap_jsmanaged' to 'native_from_reflector_jsmanaged'. | ||||
* | Move everything unrelated to the frame tree out of Page and into Document or ↵ | Josh Matthews | 2015-03-03 | 1 | -1/+0 |
| | | | | Window. Reduce the API surface of Page to a bare minimum to allow for easier future removal. | ||||
* | Fix string default values. | Ms2ger | 2015-03-02 | 1 | -9/+2 |
| | |||||
* | auto merge of #5103 : Ms2ger/servo/from_actual, r=jdm | bors-servo | 2015-02-28 | 1 | -1/+1 |
|\ | |||||
| * | Use the correct lifetime bounds for FooCast::from_actual. | Ms2ger | 2015-02-28 | 1 | -1/+1 |
| | | |||||
* | | auto merge of #5099 : Ms2ger/servo/exceptions, r=saneyuki | bors-servo | 2015-02-28 | 1 | -9/+9 |
|\ \ | |/ |/| | |||||
| * | Rename FailureUnknown to JSFailed. | Ms2ger | 2015-02-28 | 1 | -9/+9 |
| | | |||||
* | | auto merge of #5094 : chmanchester/servo/binarynames, r=jdm | bors-servo | 2015-02-28 | 3 | -20/+42 |
|\ \ | |||||
| * | | Add support for BinaryName attribute to servo's codegen (fixes #4435) r=jdm | Chris Manchester | 2015-02-27 | 3 | -20/+42 |
| |/ | |||||
* / | Fix a typo in argument_type. | Ms2ger | 2015-02-28 | 1 | -2/+2 |
|/ | |||||
* | Mark some unused arguments as unused in bindings. | Ms2ger | 2015-02-22 | 1 | -4/+4 |
| | |||||
* | Only unwrap the object once when finalizing. | Ms2ger | 2015-02-22 | 1 | -3/+2 |
| | | | | | Previously, we had 'value' and 'this' locals, both storing a pointer to the DOM object, for no good reason. | ||||
* | auto merge of #4882 : chmanchester/servo/stringifiers, r=Ms2ger | bors-servo | 2015-02-20 | 2 | -31/+61 |
|\ | |||||
| * | Add stringifier method support to CodegenRust.py (fixes #1986) | Chris Manchester | 2015-02-20 | 2 | -31/+61 |
| | | | | | | | | | | | | Add a stringifier to URLUtils (Location). (fixes #4605) wpt metadata updates for #4605 | ||||
* | | Replace uint/int by usize/isize in various places. | Ms2ger | 2015-02-20 | 1 | -6/+6 |
| | | |||||
* | | Pass isize to ptr.offset(). | Ms2ger | 2015-02-20 | 1 | -2/+2 |
| | | |||||
* | | Return usize from IDLInterface::get_prototype_depth. | Ms2ger | 2015-02-20 | 1 | -1/+1 |
| | | | | | | | | It is used as an index into an array. | ||||
* | | Use u32 for reserved slot indices. | Ms2ger | 2015-02-20 | 1 | -1/+1 |
| | | | | | | | | This is what the JSAPI expects. | ||||
* | | Stop casting the right-hand side of shifts to uint. | Ms2ger | 2015-02-20 | 1 | -2/+2 |
| | | | | | | | | This is no longer required. | ||||
* | | Use the try macro to initialize dictionaries. | Ms2ger | 2015-02-20 | 1 | -9/+6 |
| | | |||||
* | | Remove the Option<Self> arguments from IDLInterface. | Ms2ger | 2015-02-19 | 1 | -2/+2 |
| | | |||||
* | | Porting Gecko's JSToNativeConversionInfo changes to Servo's codegen | Prabhjyot Singh Sodhi | 2015-02-18 | 1 | -34/+84 |
| | | | | | | | | Fixes #4800 | ||||
* | | Replace the FooCast traits by structs. | Ms2ger | 2015-02-16 | 1 | -11/+11 |
| | | | | | | | | This should allow us to remove most type annotations in the DOM. | ||||
* | | Fix indentation in InheritTypes. | Ms2ger | 2015-02-16 | 1 | -2/+2 |
| | | |||||
* | | Improve the formatting for FromJSValConvertible implementations in UnionTypes. | Ms2ger | 2015-02-15 | 1 | -2/+5 |
| | | |||||
* | | Replace squirrel_away_unique by boxed::into_raw. | Ms2ger | 2015-02-12 | 1 | -4/+4 |
|/ | |||||
* | Implement an Unrooted smart pointer to replace JS when it is not traced. | Ms2ger | 2015-02-06 | 2 | -20/+20 |
| | |||||
* | Remove the to_js methods. | Ms2ger | 2015-02-03 | 1 | -11/+0 |
| | | | | They are unused. | ||||
* | auto merge of #4613 : saneyuki/servo/layoutjs, r=jdm | bors-servo | 2015-01-31 | 1 | -1/+12 |
|\ | | | | | | | #4571 | ||||
| * | Add BarCast::to_layout_js<T>(). | Tetsuharu OHZEKI | 2015-02-01 | 1 | -1/+12 |
| | | |||||
* | | Move FromJSValConvertible to associated types (avoids old impl check) | Manish Goregaokar | 2015-01-31 | 1 | -1/+1 |
|/ | |||||
* | Use snake case for arguments and locals in CGGetPerInterfaceObject. | Ms2ger | 2015-01-30 | 1 | -12/+12 |
| | |||||
* | Use snake case for arguments and locals in CGCreateInterfaceObjectsMethod. | Ms2ger | 2015-01-30 | 1 | -7/+7 |
| | |||||
* | Use snake case for arguments and locals in CGWrapMethod. | Ms2ger | 2015-01-30 | 1 | -18/+18 |
| | |||||
* | Rename GetContext to get_context. | Ms2ger | 2015-01-29 | 1 | -5/+5 |
| | |||||
* | Rename WrapCallThisObject to wrap_call_this_object. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | |||||
* | Rename GetCallableProperty to get_callable_property. | Ms2ger | 2015-01-29 | 1 | -1/+1 |
| | |||||
* | Rename CreateDOMGlobal to create_dom_global. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | |||||
* | Rename HasPropertyOnPrototype to has_property_on_prototype. | Ms2ger | 2015-01-29 | 1 | -3/+3 |
| | |||||
* | Rename IsPlatformObject to is_platform_object. | Ms2ger | 2015-01-29 | 1 | -4/+4 |
| | |||||
* | Rename GetArrayIndexFromId to get_array_index_from_id. | Ms2ger | 2015-01-29 | 1 | -6/+6 |
| | |||||
* | Rename GetPropertyOnPrototype to get_property_on_prototype. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | |||||
* | Rename ThrowingConstructor to throwing_constructor. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | |||||
* | Rename CreateInterfaceObjects2 to do_create_interface_objects. | Ms2ger | 2015-01-29 | 1 | -5/+5 |
| | |||||
* | Use snake case for the members of NativeProperties. | Ms2ger | 2015-01-29 | 1 | -5/+5 |
| | | | | | Note that the codegen uses the names of the Python fields to initialize the Rust struct. | ||||
* | Rename GetProtoOrIfaceArray to get_proto_or_iface_array. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | |||||
* | Rename getOwnPropertyNames_ and enumerate_ to get_own_property_names and ↵ | Ms2ger | 2015-01-29 | 1 | -3/+2 |
| | | | | enumerate. | ||||
* | Rename FillPropertyDescriptor to fill_property_descriptor. | Ms2ger | 2015-01-29 | 1 | -5/+5 |
| |