kjs_dom.h | kjs_dom.h | |||
---|---|---|---|---|
skipping to change at line 92 | skipping to change at line 92 | |||
public: | public: | |||
DOMNodeList(ExecState *, DOM::NodeListImpl* l); | DOMNodeList(ExecState *, DOM::NodeListImpl* l); | |||
~DOMNodeList(); | ~DOMNodeList(); | |||
JSValue* indexGetter(ExecState *exec, unsigned index); | JSValue* indexGetter(ExecState *exec, unsigned index); | |||
using KJS::JSObject::getOwnPropertySlot; | using KJS::JSObject::getOwnPropertySlot; | |||
virtual bool getOwnPropertySlot(ExecState *exec, const Identifier& prop ertyName, PropertySlot& slot); | virtual bool getOwnPropertySlot(ExecState *exec, const Identifier& prop ertyName, PropertySlot& slot); | |||
virtual JSValue* callAsFunction(ExecState *exec, JSObject* thisObj, con st List& args); | virtual JSValue* callAsFunction(ExecState *exec, JSObject* thisObj, con st List& args); | |||
virtual bool implementsCall() const { return true; } | virtual bool implementsCall() const { return true; } | |||
virtual bool isFunctionType() const { return false; } | virtual bool isFunctionType() const { return false; } | |||
virtual void getOwnPropertyNames(ExecState* exec, PropertyNameArray& na mes); | virtual void getOwnPropertyNames(ExecState*, PropertyNameArray&, Proper tyMap::PropertyMode mode); | |||
// no put - all read-only | // no put - all read-only | |||
virtual const ClassInfo* classInfo() const { return &info; } | virtual const ClassInfo* classInfo() const { return &info; } | |||
virtual bool toBoolean(ExecState *) const { return true; } | virtual bool toBoolean(ExecState *) const { return true; } | |||
static const ClassInfo info; | static const ClassInfo info; | |||
enum { Length, Item, NamedItem }; | enum { Length, Item, NamedItem }; | |||
DOM::NodeListImpl* impl() const { return m_impl.get(); } | DOM::NodeListImpl* impl() const { return m_impl.get(); } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |