"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AceTokensProvider = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ // Brace's token information types are not accurate. const toToken = (lineNumber, column, token) => ({ type: token.type, value: token.value, position: { lineNumber, column } }); const toTokens = (lineNumber, tokens) => { let acc = ''; return tokens.map(token => { const column = acc.length + 1; acc += token.value; return toToken(lineNumber, column, token); }); }; const extractTokenFromAceTokenRow = (lineNumber, column, aceTokens) => { let acc = ''; for (const token of aceTokens) { const start = acc.length + 1; acc += token.value; const end = acc.length; if (column < start) continue; if (column > end + 1) continue; return toToken(lineNumber, start, token); } return null; }; class AceTokensProvider { constructor(session) { this.session = session; } getTokens(lineNumber) { if (lineNumber < 1) return null; // Important: must use a .session.getLength because this is a cached value. // Calculating line length here will lead to performance issues because this function // may be called inside of tight loops. const lineCount = this.session.getLength(); if (lineNumber > lineCount) { return null; } const tokens = this.session.getTokens(lineNumber - 1); if (!tokens || !tokens.length) { // We are inside of the document but have no tokens for this line. Return an empty // array to represent this empty line. return []; } return toTokens(lineNumber, tokens); } getTokenAt(pos) { const tokens = this.session.getTokens(pos.lineNumber - 1); if (tokens) { return extractTokenFromAceTokenRow(pos.lineNumber, pos.column, tokens); } return null; } } exports.AceTokensProvider = AceTokensProvider;