| 6 | namespace binder { |
| 7 | |
| 8 | std::unique_ptr<BoundStatement> Binder::bindCreateGraph(const parser::Statement& statement) { |
| 9 | auto createGraph = statement.constCast<parser::CreateGraph>(); |
| 10 | return std::make_unique<BoundCreateGraph>(createGraph.getGraphName(), createGraph.isAnyGraph()); |
| 11 | } |
| 12 | |
| 13 | std::unique_ptr<BoundStatement> Binder::bindUseGraph(const parser::Statement& statement) { |
| 14 | auto useGraph = statement.constCast<parser::UseGraph>(); |
nothing calls this directly
no test coverage detected