mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
44 lines
No EOL
1.8 KiB
Text
44 lines
No EOL
1.8 KiB
Text
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getInnermostScope = exports.findVariable = void 0;
|
|
const eslintUtils = __importStar(require("eslint-utils"));
|
|
/**
|
|
* Get the variable of a given name.
|
|
*
|
|
* @see {@link https://eslint-utils.mysticatea.dev/api/scope-utils.html#findvariable}
|
|
*/
|
|
const findVariable = eslintUtils.findVariable;
|
|
exports.findVariable = findVariable;
|
|
/**
|
|
* Get the innermost scope which contains a given node.
|
|
*
|
|
* @see {@link https://eslint-utils.mysticatea.dev/api/scope-utils.html#getinnermostscope}
|
|
* @returns The innermost scope which contains the given node.
|
|
* If such scope doesn't exist then it returns the 1st argument `initialScope`.
|
|
*/
|
|
const getInnermostScope = eslintUtils.getInnermostScope;
|
|
exports.getInnermostScope = getInnermostScope;
|
|
//# sourceMappingURL=scopeAnalysis.js.map |