This commit is contained in:
eelke 2022-04-07 19:35:29 +02:00
parent 0da32b916c
commit 698ccab6ab
20 changed files with 265 additions and 37 deletions

View file

@ -1,6 +1,6 @@
#include "StatementList.h"
#include "Statement.h"
#include "sqlast/NodeVisitor.h"
using namespace sqlast;
@ -22,3 +22,8 @@ int StatementList::Count() const
return static_cast<int>(statements.size());
}
void StatementList::Accept(NodeVisitor &visitor)
{
visitor.Visit(*this);
}