forked from qt-creator/qt-creator
Copied in a new version of the QML parser from Qt Kinetic.
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user