diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-27 13:35:38 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-07-28 07:34:57 (GMT) |
commit | 354bd0287c4178cbf512f10b5624a84c99e1d606 (patch) | |
tree | b470de79a5b51dc7c1a20d64cccf86d49721a7a7 /src/declarative/qml/qdeclarativerewrite_p.h | |
parent | 104e9d2b3f8ac981a277cb0d63a1e5be8e352275 (diff) | |
download | Qt-354bd0287c4178cbf512f10b5624a84c99e1d606.zip Qt-354bd0287c4178cbf512f10b5624a84c99e1d606.tar.gz Qt-354bd0287c4178cbf512f10b5624a84c99e1d606.tar.bz2 |
QtDeclarative: Give name to function bindings and signals.
Currently, bindings and signals are annonymous javascript functions.
If one give them a name, a proper name is then shown in the javascript
debugger.
Reviewed-by: Aaron Kennedy
Diffstat (limited to 'src/declarative/qml/qdeclarativerewrite_p.h')
-rw-r--r-- | src/declarative/qml/qdeclarativerewrite_p.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/declarative/qml/qdeclarativerewrite_p.h b/src/declarative/qml/qdeclarativerewrite_p.h index 33b168c..6f3c46e 100644 --- a/src/declarative/qml/qdeclarativerewrite_p.h +++ b/src/declarative/qml/qdeclarativerewrite_p.h @@ -78,10 +78,14 @@ class RewriteBinding: protected AST::Visitor { unsigned _position; TextWriter *_writer; + QByteArray _name; public: QString operator()(const QString &code, bool *ok = 0); + //name of the function: used for the debugger + void setName(const QByteArray &name) { _name = name; } + protected: using AST::Visitor::visit; |