persona-community-5/.pnpm-store/v3/files/aa/f071046b7cfba1fe0e05f078db93dedf63d61d4c3cf94e8a8fd3837a600eeb2e0cf2d75f531ce1d84ca506c813dba485ee6e3d1bc0ff999bc8357cda846913
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

33 lines
1.1 KiB
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAncestors = getAncestors;
exports.getCwd = getCwd;
exports.getDeclaredVariables = getDeclaredVariables;
exports.getFilename = getFilename;
exports.getScope = getScope;
exports.getSourceCode = getSourceCode;
/** @deprecated use `context.sourceCode.getAncestors(node)` */
function getAncestors(context) {
return context.getAncestors();
}
/** @deprecated use `context.sourceCode.getCwd()` */
function getCwd(context) {
return context.getCwd();
}
/** @deprecated use `context.sourceCode.getDeclaredVariables(node)` */
function getDeclaredVariables(context, node) {
return context.sourceCode.getDeclaredVariables(node);
}
/** @deprecated use `context.filename` */
function getFilename(context) {
return context.filename;
}
/** @deprecated use `context.sourceCode.getScope(node) */
function getScope(context) {
return context.getScope();
}
/** @deprecated use `context.sourceCode` */
function getSourceCode(context) {
return context.sourceCode;
}
//# sourceMappingURL=context.js.map