summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompiler.cpp
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2009-06-11 08:46:43 (GMT)
committerRoberto Raggi <roberto.raggi@nokia.com>2009-06-11 09:02:53 (GMT)
commit7d7c1da715474cefa5404df684d680c36e4b6b20 (patch)
tree9a47bae6183401f0d846a2723a7f43fafcab77ef /src/declarative/qml/qmlcompiler.cpp
parentf88167c39259967912540cf50d3f9df9524da4b3 (diff)
downloadQt-7d7c1da715474cefa5404df684d680c36e4b6b20.zip
Qt-7d7c1da715474cefa5404df684d680c36e4b6b20.tar.gz
Qt-7d7c1da715474cefa5404df684d680c36e4b6b20.tar.bz2
Renamed the QML front-end.
Diffstat (limited to 'src/declarative/qml/qmlcompiler.cpp')
-rw-r--r--src/declarative/qml/qmlcompiler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/declarative/qml/qmlcompiler.cpp b/src/declarative/qml/qmlcompiler.cpp
index d29ac1f..3123254 100644
--- a/src/declarative/qml/qmlcompiler.cpp
+++ b/src/declarative/qml/qmlcompiler.cpp
@@ -62,7 +62,7 @@
#include "private/qmlcustomparser_p_p.h"
#include <private/qmlcontext_p.h>
#include <private/qmlcomponent_p.h>
-#include "parser/javascriptast_p.h"
+#include "parser/qmljsast_p.h"
#include "qmlscriptparser_p.h"
@@ -1484,7 +1484,7 @@ bool QmlCompiler::compileBinding(QmlParser::Value *value,
////////////////////////////////////////////////////////////////////////////////
// AST Dump
////////////////////////////////////////////////////////////////////////////////
-class Dump: protected JavaScript::AST::Visitor
+class Dump: protected QmlJS::AST::Visitor
{
std::ostream &out;
int depth;
@@ -1494,11 +1494,11 @@ public:
: out(out), depth(-1)
{ }
- void operator()(JavaScript::AST::Node *node)
- { JavaScript::AST::Node::acceptChild(node, this); }
+ void operator()(QmlJS::AST::Node *node)
+ { QmlJS::AST::Node::acceptChild(node, this); }
protected:
- virtual bool preVisit(JavaScript::AST::Node *node)
+ virtual bool preVisit(QmlJS::AST::Node *node)
{
const char *name = typeid(*node).name();
#ifdef Q_CC_GNU
@@ -1508,7 +1508,7 @@ protected:
return true;
}
- virtual void postVisit(JavaScript::AST::Node *)
+ virtual void postVisit(QmlJS::AST::Node *)
{
--depth;
}