Spaces:
Sleeping
Sleeping
File size: 2,212 Bytes
6abff73 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { ParserMessage } from './ParserMessage';
/**
* Used to report errors and warnings that occurred during parsing.
*/
export class ParserMessageLog {
constructor() {
this._messages = [];
}
/**
* The unfiltered list of all messages.
*/
get messages() {
return this._messages;
}
/**
* Append a message to the log.
*/
addMessage(parserMessage) {
this._messages.push(parserMessage);
}
/**
* Append a message associated with a TextRange.
*/
addMessageForTextRange(messageId, messageText, textRange) {
this.addMessage(new ParserMessage({
messageId,
messageText,
textRange
}));
}
/**
* Append a message associated with a TokenSequence.
*/
addMessageForTokenSequence(messageId, messageText, tokenSequence, docNode) {
this.addMessage(new ParserMessage({
messageId,
messageText,
textRange: tokenSequence.getContainingTextRange(),
tokenSequence,
docNode
}));
}
/**
* Append a message associated with a TokenSequence.
*/
addMessageForDocErrorText(docErrorText) {
let tokenSequence;
if (docErrorText.textExcerpt) {
// If there is an excerpt directly associated with the DocErrorText, highlight that:
tokenSequence = docErrorText.textExcerpt;
}
else {
// Otherwise we can use the errorLocation, but typically that is meant to give additional
// details, not to indicate the primary location of the problem.
tokenSequence = docErrorText.errorLocation;
}
this.addMessage(new ParserMessage({
messageId: docErrorText.messageId,
messageText: docErrorText.errorMessage,
textRange: tokenSequence.getContainingTextRange(),
tokenSequence: tokenSequence,
docNode: docErrorText
}));
}
}
//# sourceMappingURL=ParserMessageLog.js.map |