| 11 | } |
| 12 | |
| 13 | std::unique_ptr<BoundStatement> Binder::bindUseGraph(const parser::Statement& statement) { |
| 14 | auto useGraph = statement.constCast<parser::UseGraph>(); |
| 15 | return std::make_unique<BoundUseGraph>(useGraph.getGraphName()); |
| 16 | } |
| 17 | |
| 18 | } // namespace binder |
| 19 | } // namespace lbug |
nothing calls this directly
no test coverage detected