All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
471 B
JavaScript
13 lines
471 B
JavaScript
'use strict';
|
|
|
|
exports.__esModule = true;
|
|
|
|
const { getScope } = require('./contextCompat');
|
|
|
|
/** @type {import('./declaredScope').default} */
|
|
exports.default = function declaredScope(context, name, node) {
|
|
const references = (node ? getScope(context, node) : context.getScope()).references;
|
|
const reference = references.find((x) => x.identifier.name === name);
|
|
if (!reference || !reference.resolved) { return undefined; }
|
|
return reference.resolved.scope.type;
|
|
};
|