Changeset 60725 in webkit for trunk/JavaScriptCore/qt/api/qscriptvalue.cpp
- Timestamp:
- Jun 4, 2010, 5:23:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/qt/api/qscriptvalue.cpp
r60661 r60725 586 586 return d_ptr->strictlyEquals(QScriptValuePrivate::get(other)); 587 587 } 588 589 /*! 590 Returns true if this QScriptValue is an instance of 591 \a other; otherwise returns false. 592 593 This QScriptValue is considered to be an instance of \a other if 594 \a other is a function and the value of the \c{prototype} 595 property of \a other is in the prototype chain of this 596 QScriptValue. 597 */ 598 bool QScriptValue::instanceOf(const QScriptValue& other) const 599 { 600 return d_ptr->instanceOf(QScriptValuePrivate::get(other)); 601 }
Note:
See TracChangeset
for help on using the changeset viewer.