-
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathHtmlSourceError.js
56 lines (44 loc) · 1.29 KB
/
HtmlSourceError.js
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
function getIndices(value) {
const result = [];
let index = value.indexOf("\n");
while (index !== -1) {
result.push(index + 1);
index = value.indexOf("\n", index + 1);
}
result.push(value.length + 1);
return result;
}
function offsetToPosition(source, offset) {
let index = -1;
const indices = getIndices(source);
const { length } = indices;
if (offset < 0) {
return {};
}
// eslint-disable-next-line no-plusplus
while (++index < length) {
if (indices[index] > offset) {
return {
line: index + 1,
column: offset - (indices[index - 1] || 0) + 1,
offset,
};
}
}
return {};
}
export default class HtmlSourceError extends Error {
constructor(error, startOffset, endOffset, source) {
super(error);
this.name = "HtmlSourceError";
this.message = `${this.name}: ${this.message}`;
this.startOffset = startOffset;
this.endOffset = endOffset;
this.source = source;
const startPosition = offsetToPosition(source, this.startOffset);
const endPosition = offsetToPosition(source, this.endOffset);
this.message += ` (From line ${startPosition.line}, column ${startPosition.column}; to line ${endPosition.line}, column ${endPosition.column})`;
// We don't need stack
this.stack = false;
}
}