summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativerewrite_p.h
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-07-27 13:35:38 (GMT)
committerOlivier Goffart <olivier.goffart@nokia.com>2010-07-28 07:34:57 (GMT)
commit354bd0287c4178cbf512f10b5624a84c99e1d606 (patch)
treeb470de79a5b51dc7c1a20d64cccf86d49721a7a7 /src/declarative/qml/qdeclarativerewrite_p.h
parent104e9d2b3f8ac981a277cb0d63a1e5be8e352275 (diff)
downloadQt-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.h4
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;