(path)
| 56 | tableSchemas.push(parseTableDefinition(path, sourceFile)) |
| 57 | }, |
| 58 | TaggedTemplateExpression(path) { |
| 59 | const tag = path.get("tag") |
| 60 | if (!tag.isIdentifier()) return |
| 61 | |
| 62 | const importSpecifier = getReferencedNamedImport(tag, "sql") |
| 63 | if (!importSpecifier) return |
| 64 | |
| 65 | const query = parseQuery(path.get("quasi"), sourceFile) |
| 66 | queries.push(createQueryInvocation(query, path, sourceFile)) |
| 67 | } |
| 68 | }) |
| 69 | |
| 70 | return { |
nothing calls this directly
no test coverage detected