Changeset 62007 in webkit for trunk/JavaScriptCore/qt/api/qscriptvalue.h
- Timestamp:
- Jun 28, 2010, 8:19:59 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/qt/api/qscriptvalue.h
r61860 r62007 33 33 34 34 class QScriptValue { 35 public: 35 public: 36 enum ResolveFlag { 37 ResolveLocal = 0x00, 38 ResolvePrototype = 0x01 39 }; 40 41 Q_DECLARE_FLAGS(ResolveFlags, ResolveFlag) 42 36 43 enum SpecialValue { 37 44 NullValue, … … 67 74 bool strictlyEquals(const QScriptValue& other) const; 68 75 bool instanceOf(const QScriptValue& other) const; 76 77 QScriptValue property(const QString& name, const ResolveFlags& mode = ResolvePrototype) const; 78 QScriptValue property(quint32 arrayIndex, const ResolveFlags& mode = ResolvePrototype) const; 69 79 70 80 QScriptEngine* engine() const;
Note:
See TracChangeset
for help on using the changeset viewer.