"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.selectorExistsInAST = selectorExistsInAST;
function selectorExistsInAST(selector, ast) {
const { tsquery } = require('@phenomnomnominal/tsquery');
return tsquery(ast, selector, { visitAllChildren: true }).length > 0;
}