summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/parser/qmljsast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/parser/qmljsast.cpp')
-rw-r--r--src/declarative/qml/parser/qmljsast.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/declarative/qml/parser/qmljsast.cpp b/src/declarative/qml/parser/qmljsast.cpp
index 64fe99c..4c45bc8 100644
--- a/src/declarative/qml/parser/qmljsast.cpp
+++ b/src/declarative/qml/parser/qmljsast.cpp
@@ -75,6 +75,11 @@ Statement *Node::statementCast()
return 0;
}
+UiObjectMember *Node::uiObjectMemberCast()
+{
+ return 0;
+}
+
ExpressionNode *ExpressionNode::expressionCast()
{
return this;
@@ -90,6 +95,11 @@ Statement *Statement::statementCast()
return this;
}
+UiObjectMember *UiObjectMember::uiObjectMemberCast()
+{
+ return this;
+}
+
void NestedExpression::accept0(Visitor *visitor)
{
if (visitor->visit(this)) {