(context: Context)
| 893 | } |
| 894 | |
| 895 | function getJoinTableName(context: Context) { |
| 896 | context.joinTableName++ |
| 897 | // x because sqlite doesn't like identifiers starting with numbers |
| 898 | return `x${context.joinTableName}` |
| 899 | } |
| 900 | |
| 901 | function buildTagSearch(node: QueryString | QueryRegex, context: Context) { |
| 902 | const cardName = getJoinTableName(context) |
no outgoing calls
no test coverage detected