aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/codegen/parser/callback-location.patch
Commit message (Collapse)AuthorAgeFilesLines
* Update the WebIDL parserAnthony Ramine2016-08-261-3/+3
|
* Support multiple WebIDL interfaces being generated in the same output ↵Josh Matthews2016-08-241-0/+22
binding file. Each interface gets its own module named ${Interface}Binding. Structs, enums, and callbacks continue to use the root module of the binding file. If there is only one interface in the file, we generate reexports for several public APIs and types so that existing DOM implementations don't need any modifications. When multiple interfaces exist, the reexported names get the interface name prepended (eg. FooWrap instead of Wrap). As part of this work, stop glob-importing all DOM types in every generated binding and start generating more targeted lists of relevant types based on the methods, members, etc. of WebIDL types that are in use.