diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2015-09-27 13:37:57 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2015-10-14 18:45:35 +0200 |
commit | aab2c40389c71c4b0db3ffa75bdec99cd440b8af (patch) | |
tree | bfb10ce6c6c81cbc33b2ca34b8c8447d943ffd6a /components/script/dom/processinginstruction.rs | |
parent | 55769b2fbf24ed84ee0f8ea5fe856e5fd29d8e60 (diff) | |
download | servo-aab2c40389c71c4b0db3ffa75bdec99cd440b8af.tar.gz servo-aab2c40389c71c4b0db3ffa75bdec99cd440b8af.zip |
Generate the TypeId enums in codegen
Diffstat (limited to 'components/script/dom/processinginstruction.rs')
-rw-r--r-- | components/script/dom/processinginstruction.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/components/script/dom/processinginstruction.rs b/components/script/dom/processinginstruction.rs index d3c1e655490..6610352dda1 100644 --- a/components/script/dom/processinginstruction.rs +++ b/components/script/dom/processinginstruction.rs @@ -4,12 +4,13 @@ use dom::bindings::codegen::Bindings::ProcessingInstructionBinding; use dom::bindings::codegen::Bindings::ProcessingInstructionBinding::ProcessingInstructionMethods; -use dom::bindings::codegen::InheritTypes::ProcessingInstructionDerived; +use dom::bindings::codegen::InheritTypes::{CharacterDataTypeId, EventTargetTypeId}; +use dom::bindings::codegen::InheritTypes::{NodeTypeId, ProcessingInstructionDerived}; use dom::bindings::js::Root; -use dom::characterdata::{CharacterData, CharacterDataTypeId}; +use dom::characterdata::CharacterData; use dom::document::Document; -use dom::eventtarget::{EventTarget, EventTargetTypeId}; -use dom::node::{Node, NodeTypeId}; +use dom::eventtarget::EventTarget; +use dom::node::Node; use util::str::DOMString; /// An HTML processing instruction node. |