Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ParserMessage = void 0;
|
|
/**
|
|
* Represents an error or warning that occurred during parsing.
|
|
*/
|
|
class ParserMessage {
|
|
constructor(parameters) {
|
|
this.messageId = parameters.messageId;
|
|
this.unformattedText = parameters.messageText;
|
|
this.textRange = parameters.textRange;
|
|
this.tokenSequence = parameters.tokenSequence;
|
|
this.docNode = parameters.docNode;
|
|
this._text = undefined;
|
|
}
|
|
/**
|
|
* Generates a line/column prefix. Example with line=2 and column=5
|
|
* and message="An error occurred":
|
|
* ```
|
|
* "(2,5): An error occurred"
|
|
* ```
|
|
*/
|
|
static _formatMessageText(message, range) {
|
|
if (!message) {
|
|
message = 'An unknown error occurred';
|
|
}
|
|
if (range.pos !== 0 || range.end !== 0) {
|
|
// NOTE: This currently a potentially expensive operation, since TSDoc currently doesn't
|
|
// have a full newline analysis for the input buffer.
|
|
const location = range.getLocation(range.pos);
|
|
if (location.line) {
|
|
return `(${location.line},${location.column}): ` + message;
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
/**
|
|
* The message text.
|
|
*/
|
|
get text() {
|
|
if (this._text === undefined) {
|
|
// NOTE: This currently a potentially expensive operation, since TSDoc currently doesn't
|
|
// have a full newline analysis for the input buffer.
|
|
this._text = ParserMessage._formatMessageText(this.unformattedText, this.textRange);
|
|
}
|
|
return this._text;
|
|
}
|
|
toString() {
|
|
return this.text;
|
|
}
|
|
}
|
|
exports.ParserMessage = ParserMessage;
|
|
//# sourceMappingURL=ParserMessage.js.map
|