Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
function getSourceCode(context) {
|
|
return context.getSourceCode ? context.getSourceCode() : context.sourceCode;
|
|
}
|
|
|
|
function getAncestors(context, node) {
|
|
const sourceCode = getSourceCode(context);
|
|
return sourceCode.getAncestors ? sourceCode.getAncestors(node) : context.getAncestors();
|
|
}
|
|
|
|
function getScope(context, node) {
|
|
const sourceCode = getSourceCode(context);
|
|
if (sourceCode.getScope) {
|
|
return sourceCode.getScope(node);
|
|
}
|
|
|
|
return context.getScope();
|
|
}
|
|
|
|
function markVariableAsUsed(name, node, context) {
|
|
const sourceCode = getSourceCode(context);
|
|
return sourceCode.markVariableAsUsed
|
|
? sourceCode.markVariableAsUsed(name, node)
|
|
: context.markVariableAsUsed(name);
|
|
}
|
|
|
|
function getFirstTokens(context, node, count) {
|
|
const sourceCode = getSourceCode(context);
|
|
return sourceCode.getFirstTokens ? sourceCode.getFirstTokens(node, count) : context.getFirstTokens(node, count);
|
|
}
|
|
|
|
function getText(context) {
|
|
const sourceCode = getSourceCode(context);
|
|
const args = Array.prototype.slice.call(arguments, 1);
|
|
return sourceCode.getText ? sourceCode.getText.apply(sourceCode, args) : context.getSource.apply(context, args);
|
|
}
|
|
|
|
module.exports = {
|
|
getAncestors,
|
|
getFirstTokens,
|
|
getScope,
|
|
getSourceCode,
|
|
getText,
|
|
markVariableAsUsed,
|
|
};
|