diff options
author | Roberto Raggi <[email protected]> | 2010-02-01 13:54:44 +0100 |
---|---|---|
committer | Roberto Raggi <[email protected]> | 2010-02-01 13:54:59 +0100 |
commit | 0f6551c43f12512ecd57242bead784f67d2a3fab (patch) | |
tree | 58a584f85f45d9243152ee5e67be38adb9c64a67 /src/libs/qmljs/qmljsinterpreter.h | |
parent | 0cf48cb45d3816f231f5f7dd24225e77ef1603d7 (diff) |
Introduced ASTObjectValue.
Diffstat (limited to 'src/libs/qmljs/qmljsinterpreter.h')
-rw-r--r-- | src/libs/qmljs/qmljsinterpreter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libs/qmljs/qmljsinterpreter.h b/src/libs/qmljs/qmljsinterpreter.h index 54251a87ff3..ba4b7606560 100644 --- a/src/libs/qmljs/qmljsinterpreter.h +++ b/src/libs/qmljs/qmljsinterpreter.h @@ -273,11 +273,15 @@ public: int minorVersion() const { return _minorVersion; } +protected: + const Value *findOrCreateSignature(int index, const QMetaMethod &method, QString *methodName) const; + private: const QMetaObject *_metaObject; QString _qmlTypeName; int _majorVersion; int _minorVersion; + mutable QHash<int, const Value *> _metaSignature; }; #endif // !NO_DECLARATIVE_BACKEND |