persona-community-5/.pnpm-store/v3/files/f6/4578ab356fd1f9f9d1f13975df85996b021346f1eb4b4f4249e3f575be8340abfe74a865a1de343176f498e6275caafdcf3d878813b0fae32dcb85dd8b4760
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

52 lines
2.1 KiB
Plaintext

"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.getTokenAtPosition = getTokenAtPosition;
const ts = __importStar(require("typescript"));
/* eslint-disable @typescript-eslint/no-non-null-assertion */
function getTokenAtPosition(sourceFile, position) {
const queue = [sourceFile];
let current;
while (queue.length > 0) {
current = queue.shift();
// find the child that contains 'position'
for (const child of current.getChildren(sourceFile)) {
const start = child.getFullStart();
if (start > position) {
// If this child begins after position, then all subsequent children will as well.
return current;
}
const end = child.getEnd();
if (position < end ||
(position === end && child.kind === ts.SyntaxKind.EndOfFileToken)) {
queue.push(child);
break;
}
}
}
return current;
}
/* eslint-enable @typescript-eslint/no-non-null-assertion */
//# sourceMappingURL=getTokenAtPosition.js.map