aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/testbinding.rs
Commit message (Expand)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-299/+0
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-24/+18
* Comment out references to floating-point arguments with default values.Ms2ger2014-07-271-2/+2
* Remove references to nullable any from testbinding.Ms2ger2014-07-271-2/+0
* Introduce abstractions for global scopes.Ms2ger2014-07-151-7/+7
* Remove some Cells for immutable members.Ms2ger2014-07-151-7/+5
* Make some DOM fields private.Ms2ger2014-07-151-2/+2
* Put some 'use' statements in alphabetical order.Ms2ger2014-07-151-1/+1
* Rename variables that refer to global objects.Ms2ger2014-07-151-9/+9
* Implement static attributes (fixes #1989).Ms2ger2014-06-221-0/+2
* Implement static methods (fixes #1989).Ms2ger2014-06-221-0/+4
* Remove Reflectable::mut_reflector.Ms2ger2014-06-131-4/+0
* Support union variadic arguments and add tests.Ms2ger2014-06-101-0/+20
* auto merge of #2611 : Ms2ger/servo/webidl-parser-sync, r=jdmbors-servo2014-06-091-1/+1
|\
| * Add support for undefined default values for 'any'.Ms2ger2014-06-071-1/+1
* | Allow union types to be used as return valuesManish Goregaokar2014-06-071-3/+14
|/
* Upgrade Rust.Jack Moffitt2014-06-051-4/+4
* Move WebIDL unions into their own module.Ms2ger2014-06-031-1/+4
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-2/+2
* Use Cell/RefCell for interior mutability of NodeList, Performance, TestBindin...Tetsuharu OHZEKI2014-05-301-5/+7
* Port modern callback handling code from Gecko, and copy related WebIDL parser...Josh Matthews2014-05-271-6/+6
* Use *mut T for the T* pointers in SpiderMonkey.Ms2ger2014-05-261-8/+8
* Update Rust.Ms2ger2014-05-221-3/+2
* Add tests for return values of interface methods.Ms2ger2014-05-161-0/+43
* Add support for DOMString in unions (fixes #2324).Ms2ger2014-05-061-1/+6
* Use default methods to reduce code duplication for TestBinding.Ms2ger2014-05-051-188/+13
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-2/+2
* Address review comments.Josh Matthews2014-05-031-3/+3
* Remove all root collections.Josh Matthews2014-05-031-5/+3
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-5/+5
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-178/+358
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-5/+5
* Turn on GC all the time. Fix rooting errors during parsing and storing timers...Josh Matthews2014-05-031-9/+17
* auto merge of #2290 : saneyuki/servo/export, r=jdmbors-servo2014-05-011-1/+1
|\
| * Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
* | Implement WebIDL codegen for ByteString.Ms2ger2014-05-011-0/+10
|/
* auto merge of #2244 : Ms2ger/servo/optional-rewrite, r=jdmbors-servo2014-04-281-4/+4
|\
| * Use handleOptional for interface conversion.Ms2ger2014-04-271-1/+1
| * Use handleOptional for the enumeration conversion.Ms2ger2014-04-261-1/+1
| * Use handleOptional for the union conversion.Ms2ger2014-04-261-2/+2
* | auto merge of #2237 : Ms2ger/servo/union-fromjsvalconvertible, r=jdmbors-servo2014-04-281-1/+39
|\|
| * Increase codegen test coverage.Ms2ger2014-04-261-1/+39
* | This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-2/+2
|/
* Remove all traces of WindowProxy. Implement basic browser context concept and...Josh Matthews2014-04-221-2/+3
* Implement support for default values for enumeration arguments.Ms2ger2014-04-181-1/+1
* Introduce some (commented-out) tests for enumeration codegen.Ms2ger2014-04-181-0/+6
* Use ToJSValConvertible to convert nullable enums to JSVal.Ms2ger2014-04-061-0/+1
* Use ToJSValConvertible to convert enums to JSVal.Ms2ger2014-04-061-0/+3
* Fix code generation for a null default value for nullable string arguments.Ms2ger2014-03-201-1/+1
* Pass Option<T> for optional primitive arguments without a default value (fixe...Ms2ger2014-03-191-23/+22