We should auto-generate these protocol implementations.
Created attachment 24149 [details] Proposed patch
Comment on attachment 24149 [details] Proposed patch + #if defined(LANGUAGE_OBJECTIVE_C) + : Object, EventTarget + #endif /* defined(LANGUAGE_OBJECTIVE_C) */ What's "Object" here and why is it needed? Why does this need to be ObjC-specific?
(In reply to comment #2) > (From update of attachment 24149 [details] [edit]) > + #if defined(LANGUAGE_OBJECTIVE_C) > + : Object, EventTarget > + #endif /* defined(LANGUAGE_OBJECTIVE_C) */ > > What's "Object" here and why is it needed? Why does this need to be > ObjC-specific? > Object will turn into DOMObject. This is needed to take the code generator down the right path of multiple super-classes as protocols. It is ObjC only for legacy reasons. The event target methods are normally on NodeEventTarget, a subclass of Node. But the ObjC API has never has this sub-class and they are on DOMNode. I will add this info to the ChangeLog.
Landed in r37395.