QML/AST: Remove dead code

The qmldevtools library is no more, therefore we can resolve the TODO
and remove the method that only existed for it.

Change-Id: I685d9305e4b42a34ade56baccce0ec2e49cbcf4a
Reviewed-by: Andrei Golubev <andrei.golubev@qt.io>
This commit is contained in:
Fabian Kosmale 2021-11-18 15:52:03 +01:00
parent e743b6e5e9
commit 6b946bb68b
1 changed files with 0 additions and 6 deletions

View File

@ -313,12 +313,6 @@ public:
node->accept(visitor);
}
// ### Remove when we can. This is part of the qmldevtools library, though.
inline static void acceptChild(Node *node, BaseVisitor *visitor)
{
return accept(node, visitor);
}
virtual void accept0(BaseVisitor *visitor) = 0;
virtual SourceLocation firstSourceLocation() const = 0;
virtual SourceLocation lastSourceLocation() const = 0;