@markuplint/astro-parser 3.0.0-dev.25 → 3.0.0-dev.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/astro-parser.d.ts +3 -11
- package/lib/astro-parser.js +11 -20
- package/lib/attr-tokenizer.d.ts +2 -2
- package/lib/attr-tokenizer.js +34 -75
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -6
- package/lib/parse.js +173 -156
- package/package.json +15 -9
- package/tsconfig.test.json +0 -3
- package/tsconfig.tsbuildinfo +0 -1
package/lib/astro-parser.d.ts
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
export
|
|
4
|
-
export type ASTNode = TemplateNode;
|
|
5
|
-
export type ASTStyleNode = Style;
|
|
6
|
-
export type ASTAttribute = Attribute;
|
|
7
|
-
export type AstroAST = {
|
|
8
|
-
html?: ASTNode;
|
|
9
|
-
style?: ASTStyleNode[];
|
|
10
|
-
};
|
|
11
|
-
export declare function astroParse(code: string): AstroAST | AstroCompileError;
|
|
1
|
+
import type { RootNode } from '@astrojs/compiler/types';
|
|
2
|
+
export type { RootNode, ElementNode, CustomElementNode, ComponentNode, FragmentNode, AttributeNode, Node, } from '@astrojs/compiler/types';
|
|
3
|
+
export declare function astroParse(code: string): RootNode;
|
package/lib/astro-parser.js
CHANGED
|
@@ -1,22 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
html: ast.html,
|
|
12
|
-
style: ast.css,
|
|
13
|
-
};
|
|
14
|
-
}
|
|
15
|
-
catch (e) {
|
|
16
|
-
if (e instanceof parser_1.CompileError) {
|
|
17
|
-
return e;
|
|
18
|
-
}
|
|
19
|
-
throw e;
|
|
1
|
+
import { ParserError } from '@markuplint/parser-utils';
|
|
2
|
+
import { parseTemplate } from 'astro-eslint-parser';
|
|
3
|
+
export function astroParse(code) {
|
|
4
|
+
const { result } = parseTemplate(code);
|
|
5
|
+
if (result.diagnostics[0]) {
|
|
6
|
+
const error = result.diagnostics[0];
|
|
7
|
+
throw new ParserError(error.text, {
|
|
8
|
+
line: error.location.line,
|
|
9
|
+
col: error.location.column,
|
|
10
|
+
});
|
|
20
11
|
}
|
|
12
|
+
return result.ast;
|
|
21
13
|
}
|
|
22
|
-
exports.astroParse = astroParse;
|
package/lib/attr-tokenizer.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AttributeNode } from './astro-parser.js';
|
|
2
2
|
import type { MLASTHTMLAttr } from '@markuplint/ml-ast';
|
|
3
|
-
export declare function attrTokenizer(attr:
|
|
3
|
+
export declare function attrTokenizer(attr: AttributeNode, nextAttr: AttributeNode | null, rawHtml: string, startTag: string, startTagEndOffset: number): MLASTHTMLAttr;
|
package/lib/attr-tokenizer.js
CHANGED
|
@@ -1,86 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
const beforeCode = rawHtml.slice(0, attrToken.startOffset);
|
|
14
|
-
const beforeAttrMatched = beforeCode.match(/\s+$/m);
|
|
15
|
-
const beforeAttrChar = (beforeAttrMatched === null || beforeAttrMatched === void 0 ? void 0 : beforeAttrMatched[0]) || '';
|
|
16
|
-
const spacesBeforeName = (0, parser_utils_1.createTokenFromRawCode)(beforeAttrChar, attrToken.startOffset - beforeAttrChar.length, rawHtml);
|
|
17
|
-
const name = (0, parser_utils_1.createTokenFromRawCode)(attr.name, spacesBeforeName.endOffset, rawHtml);
|
|
18
|
-
let rawValue;
|
|
19
|
-
let rawValueStart;
|
|
20
|
-
if (
|
|
21
|
-
//
|
|
22
|
-
!attr.value ||
|
|
23
|
-
// @ts-ignore
|
|
24
|
-
attr.value === true ||
|
|
25
|
-
//
|
|
26
|
-
attr.value.length === 0) {
|
|
27
|
-
rawValue = '';
|
|
28
|
-
rawValueStart = name.endOffset;
|
|
1
|
+
import { defaultValueDelimiters, getSpaceBefore, parseAttr, sliceFragment } from '@markuplint/parser-utils';
|
|
2
|
+
const mustacheTag = {
|
|
3
|
+
start: '{',
|
|
4
|
+
end: '}',
|
|
5
|
+
};
|
|
6
|
+
export function attrTokenizer(
|
|
7
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
8
|
+
attr,
|
|
9
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
10
|
+
nextAttr, rawHtml, startTag, startTagEndOffset) {
|
|
11
|
+
if (!attr.position) {
|
|
12
|
+
throw new TypeError("Attr doesn't have position");
|
|
29
13
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
14
|
+
if (attr.position.end) {
|
|
15
|
+
throw new TypeError('Node may is an attribute because it has end position');
|
|
16
|
+
}
|
|
17
|
+
let nextAttrBeforeSpaceOffset;
|
|
18
|
+
if (nextAttr) {
|
|
19
|
+
if (!nextAttr.position) {
|
|
20
|
+
throw new TypeError("NextAttr doesn't have position");
|
|
21
|
+
}
|
|
22
|
+
if (nextAttr.position.end) {
|
|
23
|
+
throw new TypeError('NextAttr Node may is an attribute because it has end position');
|
|
24
|
+
}
|
|
25
|
+
nextAttrBeforeSpaceOffset = getSpaceBefore(nextAttr.position.start.offset, rawHtml).startOffset;
|
|
33
26
|
}
|
|
34
27
|
else {
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
const close = /(\/?>)$/.exec(startTag)?.[1] ?? '';
|
|
29
|
+
nextAttrBeforeSpaceOffset = startTagEndOffset - close.length;
|
|
30
|
+
}
|
|
31
|
+
const { raw, startOffset } = sliceFragment(rawHtml, attr.position.start.offset, nextAttrBeforeSpaceOffset);
|
|
32
|
+
const result = parseAttr(raw, startOffset, rawHtml, {
|
|
33
|
+
valueDelimiters: [...defaultValueDelimiters, mustacheTag],
|
|
34
|
+
});
|
|
35
|
+
if (result.startQuote.raw === mustacheTag.start) {
|
|
36
|
+
result.isDynamicValue = true;
|
|
37
37
|
}
|
|
38
|
-
const value = (0, parser_utils_1.createTokenFromRawCode)(rawValue, rawValueStart + codeOffset, rawHtml);
|
|
39
|
-
const eq = (0, parser_utils_1.sliceFragment)(rawHtml, name.endOffset, value.startOffset);
|
|
40
|
-
const eqRegexp = /^(?<bs>\s*)(?<eq>=)(?<as>\s*)(?<squot>"|'|{)?$/g;
|
|
41
|
-
const exp = eqRegexp.exec(eq.raw);
|
|
42
|
-
const bsChar = ((_c = exp === null || exp === void 0 ? void 0 : exp.groups) === null || _c === void 0 ? void 0 : _c.bs) || '';
|
|
43
|
-
const eqChar = ((_d = exp === null || exp === void 0 ? void 0 : exp.groups) === null || _d === void 0 ? void 0 : _d.eq) || '';
|
|
44
|
-
const asChar = ((_e = exp === null || exp === void 0 ? void 0 : exp.groups) === null || _e === void 0 ? void 0 : _e.as) || '';
|
|
45
|
-
const squotChar = ((_f = exp === null || exp === void 0 ? void 0 : exp.groups) === null || _f === void 0 ? void 0 : _f.squot) || '';
|
|
46
|
-
const spacesBeforeEqual = (0, parser_utils_1.createTokenFromRawCode)(bsChar, name.endOffset, rawHtml);
|
|
47
|
-
const equal = (0, parser_utils_1.createTokenFromRawCode)(eqChar, spacesBeforeEqual.endOffset, rawHtml);
|
|
48
|
-
const spacesAfterEqual = (0, parser_utils_1.createTokenFromRawCode)(asChar, equal.endOffset, rawHtml);
|
|
49
|
-
const startQuote = (0, parser_utils_1.createTokenFromRawCode)(squotChar, spacesAfterEqual.endOffset, rawHtml);
|
|
50
|
-
const endQuote = (0, parser_utils_1.createTokenFromRawCode)(squotChar === '{' ? '}' : squotChar, value.endOffset, rawHtml);
|
|
51
|
-
const result = {
|
|
52
|
-
type: 'html-attr',
|
|
53
|
-
uuid: (0, parser_utils_1.uuid)(),
|
|
54
|
-
raw: attrToken.raw,
|
|
55
|
-
startOffset: attrToken.startOffset,
|
|
56
|
-
endOffset: attrToken.endOffset,
|
|
57
|
-
startLine: attrToken.startLine,
|
|
58
|
-
endLine: attrToken.endLine,
|
|
59
|
-
startCol: attrToken.startCol,
|
|
60
|
-
endCol: attrToken.endCol,
|
|
61
|
-
spacesBeforeName,
|
|
62
|
-
name,
|
|
63
|
-
spacesBeforeEqual,
|
|
64
|
-
equal,
|
|
65
|
-
spacesAfterEqual,
|
|
66
|
-
startQuote,
|
|
67
|
-
value,
|
|
68
|
-
endQuote,
|
|
69
|
-
isDuplicatable: false,
|
|
70
|
-
isDynamicValue,
|
|
71
|
-
nodeName: name.raw,
|
|
72
|
-
parentNode: null,
|
|
73
|
-
nextNode: null,
|
|
74
|
-
prevNode: null,
|
|
75
|
-
isFragment: false,
|
|
76
|
-
isGhost: false,
|
|
77
|
-
};
|
|
78
38
|
/**
|
|
79
39
|
* Detects Template Directive
|
|
80
40
|
*
|
|
81
41
|
* @see https://docs.astro.build/en/reference/directives-reference/
|
|
82
42
|
*/
|
|
83
|
-
const [, directive] = name.raw.match(/^([^:]+):([^:]+)$/)
|
|
43
|
+
const [, directive] = result.name.raw.match(/^([^:]+):([^:]+)$/) ?? [];
|
|
84
44
|
if (directive) {
|
|
85
45
|
const lowerCaseDirectiveName = directive.toLowerCase();
|
|
86
46
|
switch (lowerCaseDirectiveName) {
|
|
@@ -95,4 +55,3 @@ function attrTokenizer(attr, rawHtml, codeOffset) {
|
|
|
95
55
|
}
|
|
96
56
|
return result;
|
|
97
57
|
}
|
|
98
|
-
exports.attrTokenizer = attrTokenizer;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { parse } from './parse';
|
|
1
|
+
export { parse } from './parse.js';
|
|
2
2
|
export declare const endTag = "xml";
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.endTag = exports.parse = void 0;
|
|
4
|
-
var parse_1 = require("./parse");
|
|
5
|
-
Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return parse_1.parse; } });
|
|
6
|
-
exports.endTag = 'xml';
|
|
1
|
+
export { parse } from './parse.js';
|
|
2
|
+
export const endTag = 'xml';
|
package/lib/parse.js
CHANGED
|
@@ -1,56 +1,41 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
nodeList: [],
|
|
20
|
-
isFragment: false,
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
const htmlRawNodeList = traverse(ast.html, null, 'http://www.w3.org/1999/xhtml', rawCode);
|
|
24
|
-
if (ast.style) {
|
|
25
|
-
const styleNodes = parseStyle(ast.style, 'http://www.w3.org/1999/xhtml', rawCode, 0, options);
|
|
26
|
-
htmlRawNodeList.push(...styleNodes);
|
|
27
|
-
}
|
|
28
|
-
const nodeList = (0, html_parser_1.flattenNodes)(htmlRawNodeList, rawCode);
|
|
29
|
-
// Remove `</template>`
|
|
30
|
-
const templateEndTagIndex = nodeList.findIndex(node => /\s*<\/\s*template\s*>\s*/i.test(node.raw));
|
|
31
|
-
if (templateEndTagIndex !== -1) {
|
|
32
|
-
const templateEndTag = nodeList[templateEndTagIndex];
|
|
33
|
-
for (const node of nodeList) {
|
|
34
|
-
if (node.nextNode && node.nextNode.uuid === templateEndTag.uuid) {
|
|
35
|
-
node.nextNode = null;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
nodeList.splice(templateEndTagIndex, 1);
|
|
1
|
+
import { parseRawTag, parse as htmlParse } from '@markuplint/html-parser';
|
|
2
|
+
import { flattenNodes, detectElementType, getEndCol, getEndLine, sliceFragment, uuid } from '@markuplint/parser-utils';
|
|
3
|
+
import { astroParse } from './astro-parser.js';
|
|
4
|
+
import { attrTokenizer } from './attr-tokenizer.js';
|
|
5
|
+
export const parse = (rawCode, options = {}) => {
|
|
6
|
+
const ast = astroParse(rawCode);
|
|
7
|
+
const htmlRawNodeList = traverse(ast, null, 'http://www.w3.org/1999/xhtml', rawCode, 0, options);
|
|
8
|
+
const firstOffset = htmlRawNodeList[0]?.startOffset ?? 0;
|
|
9
|
+
if (firstOffset > 0) {
|
|
10
|
+
const head = rawCode.slice(0, firstOffset);
|
|
11
|
+
const ast = htmlParse(head, {
|
|
12
|
+
...options,
|
|
13
|
+
ignoreFrontMatter: true,
|
|
14
|
+
});
|
|
15
|
+
const headNodes = ast.nodeList.filter(node => {
|
|
16
|
+
return !node.isGhost;
|
|
17
|
+
});
|
|
18
|
+
htmlRawNodeList.unshift(...headNodes);
|
|
39
19
|
}
|
|
20
|
+
const nodeList = flattenNodes(htmlRawNodeList, rawCode);
|
|
40
21
|
return {
|
|
41
22
|
nodeList,
|
|
42
23
|
isFragment: true,
|
|
43
24
|
};
|
|
44
25
|
};
|
|
45
|
-
|
|
46
|
-
|
|
26
|
+
function traverse(
|
|
27
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
28
|
+
rootNode, parentNode = null, scopeNS, rawHtml, offset, options, inExpression) {
|
|
47
29
|
const nodeList = [];
|
|
48
|
-
if (!rootNode
|
|
30
|
+
if (!('children' in rootNode)) {
|
|
31
|
+
return nodeList;
|
|
32
|
+
}
|
|
33
|
+
if (rootNode.children.length === 0) {
|
|
49
34
|
return nodeList;
|
|
50
35
|
}
|
|
51
36
|
let prevNode = null;
|
|
52
37
|
for (const astNode of rootNode.children) {
|
|
53
|
-
const node = nodeize(astNode, prevNode, parentNode, scopeNS, rawHtml, offset, options);
|
|
38
|
+
const node = nodeize(astNode, prevNode, parentNode, scopeNS, rawHtml, offset, options, inExpression);
|
|
54
39
|
if (!node) {
|
|
55
40
|
continue;
|
|
56
41
|
}
|
|
@@ -68,24 +53,35 @@ function traverse(rootNode, parentNode = null, scopeNS, rawHtml, offset, options
|
|
|
68
53
|
}
|
|
69
54
|
return nodeList;
|
|
70
55
|
}
|
|
71
|
-
function nodeize(
|
|
72
|
-
|
|
56
|
+
function nodeize(
|
|
57
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
58
|
+
originNode,
|
|
59
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
60
|
+
prevNode,
|
|
61
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
62
|
+
parentNode, scopeNS, rawHtml, offset = 0, options, inExpression) {
|
|
63
|
+
if (!originNode.position) {
|
|
64
|
+
throw new TypeError("Node doesn't have position");
|
|
65
|
+
}
|
|
73
66
|
const nextNode = null;
|
|
74
|
-
const startOffset = originNode.start + offset;
|
|
75
|
-
const endOffset = originNode.end + offset;
|
|
76
|
-
const { startLine, endLine, startCol, endCol, raw } =
|
|
67
|
+
const startOffset = originNode.position.start.offset + offset;
|
|
68
|
+
const endOffset = (originNode.position.end?.offset ?? originNode.position.start.offset) + offset;
|
|
69
|
+
const { startLine, endLine, startCol, endCol, raw } = sliceFragment(rawHtml, startOffset, endOffset);
|
|
77
70
|
if (scopeNS === 'http://www.w3.org/1999/xhtml' &&
|
|
78
|
-
originNode.type === '
|
|
79
|
-
|
|
71
|
+
originNode.type === 'element' &&
|
|
72
|
+
originNode.name?.toLowerCase() === 'svg') {
|
|
80
73
|
scopeNS = 'http://www.w3.org/2000/svg';
|
|
81
74
|
}
|
|
82
75
|
else if (scopeNS === 'http://www.w3.org/2000/svg' && parentNode && parentNode.nodeName === 'foreignObject') {
|
|
83
76
|
scopeNS = 'http://www.w3.org/1999/xhtml';
|
|
84
77
|
}
|
|
85
78
|
switch (originNode.type) {
|
|
86
|
-
case '
|
|
79
|
+
case 'text': {
|
|
80
|
+
if (inExpression) {
|
|
81
|
+
return null;
|
|
82
|
+
}
|
|
87
83
|
const node = {
|
|
88
|
-
uuid:
|
|
84
|
+
uuid: uuid(),
|
|
89
85
|
raw,
|
|
90
86
|
startOffset,
|
|
91
87
|
endOffset,
|
|
@@ -103,18 +99,36 @@ function nodeize(originNode, prevNode, parentNode, scopeNS, rawHtml, offset = 0,
|
|
|
103
99
|
};
|
|
104
100
|
return node;
|
|
105
101
|
}
|
|
106
|
-
case '
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
102
|
+
case 'expression': {
|
|
103
|
+
let _endOffset = endOffset;
|
|
104
|
+
let _startLine = startLine;
|
|
105
|
+
let _endLine = endLine;
|
|
106
|
+
let _startCol = startCol;
|
|
107
|
+
let _endCol = endCol;
|
|
108
|
+
let _raw = raw;
|
|
109
|
+
let closeExpression = null;
|
|
110
|
+
const firstChild = originNode.children[0];
|
|
111
|
+
const lastChild = originNode.children[originNode.children.length - 1];
|
|
112
|
+
if (firstChild && lastChild && firstChild !== lastChild) {
|
|
113
|
+
_endOffset = firstChild.position?.end?.offset ?? endOffset;
|
|
114
|
+
const startLoc = sliceFragment(rawHtml, startOffset, _endOffset);
|
|
115
|
+
_startLine = startLoc.startLine;
|
|
116
|
+
_endLine = startLoc.endLine;
|
|
117
|
+
_startCol = startLoc.startCol;
|
|
118
|
+
_endCol = startLoc.endCol;
|
|
119
|
+
_raw = startLoc.raw;
|
|
120
|
+
const closeStartOffset = lastChild.position?.start.offset ?? startOffset;
|
|
121
|
+
const closeLoc = sliceFragment(rawHtml, closeStartOffset, endOffset);
|
|
122
|
+
closeExpression = {
|
|
123
|
+
uuid: uuid(),
|
|
124
|
+
raw: closeLoc.raw,
|
|
125
|
+
startOffset: closeStartOffset,
|
|
126
|
+
endOffset: closeLoc.endOffset,
|
|
127
|
+
startLine: closeLoc.startLine,
|
|
128
|
+
endLine: closeLoc.endLine,
|
|
129
|
+
startCol: closeLoc.startCol,
|
|
130
|
+
endCol: closeLoc.endCol,
|
|
131
|
+
nodeName: 'MustacheTag',
|
|
118
132
|
type: 'psblock',
|
|
119
133
|
parentNode,
|
|
120
134
|
prevNode,
|
|
@@ -123,55 +137,34 @@ function nodeize(originNode, prevNode, parentNode, scopeNS, rawHtml, offset = 0,
|
|
|
123
137
|
isGhost: false,
|
|
124
138
|
};
|
|
125
139
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
const prevBlockEndOffset = prevBlock ? prevBlock.endOffset : originNode.start;
|
|
146
|
-
const loc = (0, parser_utils_1.sliceFragment)(rawHtml, prevBlockEndOffset + i, prevBlockEndOffset + i + chunk.length);
|
|
147
|
-
blocks.push({
|
|
148
|
-
uuid: (0, parser_utils_1.uuid)(),
|
|
149
|
-
raw: chunk,
|
|
150
|
-
startOffset: loc.startOffset,
|
|
151
|
-
endOffset: loc.endOffset,
|
|
152
|
-
startLine: loc.startLine,
|
|
153
|
-
endLine: loc.endLine,
|
|
154
|
-
startCol: loc.startCol,
|
|
155
|
-
endCol: loc.endCol,
|
|
156
|
-
nodeName: originNode.type,
|
|
157
|
-
type: 'psblock',
|
|
158
|
-
parentNode,
|
|
159
|
-
prevNode,
|
|
160
|
-
nextNode,
|
|
161
|
-
isFragment: false,
|
|
162
|
-
isGhost: false,
|
|
163
|
-
});
|
|
164
|
-
stub = stub.slice(i + chunk.length);
|
|
140
|
+
const node = {
|
|
141
|
+
uuid: uuid(),
|
|
142
|
+
raw: _raw,
|
|
143
|
+
startOffset,
|
|
144
|
+
endOffset: _endOffset,
|
|
145
|
+
startLine: _startLine,
|
|
146
|
+
endLine: _endLine,
|
|
147
|
+
startCol: _startCol,
|
|
148
|
+
endCol: _endCol,
|
|
149
|
+
nodeName: 'MustacheTag',
|
|
150
|
+
type: 'psblock',
|
|
151
|
+
parentNode,
|
|
152
|
+
prevNode,
|
|
153
|
+
nextNode,
|
|
154
|
+
isFragment: false,
|
|
155
|
+
isGhost: false,
|
|
156
|
+
};
|
|
157
|
+
if (originNode.children.length > 0) {
|
|
158
|
+
node.childNodes = traverse(originNode, parentNode, scopeNS, rawHtml, offset, options, true);
|
|
165
159
|
}
|
|
166
|
-
if (
|
|
167
|
-
|
|
168
|
-
blocks[0].childNodes = childNodes;
|
|
160
|
+
if (closeExpression) {
|
|
161
|
+
return [node, closeExpression];
|
|
169
162
|
}
|
|
170
|
-
return
|
|
163
|
+
return node;
|
|
171
164
|
}
|
|
172
|
-
case '
|
|
165
|
+
case 'comment': {
|
|
173
166
|
return {
|
|
174
|
-
uuid:
|
|
167
|
+
uuid: uuid(),
|
|
175
168
|
raw,
|
|
176
169
|
startOffset,
|
|
177
170
|
endOffset,
|
|
@@ -188,11 +181,13 @@ function nodeize(originNode, prevNode, parentNode, scopeNS, rawHtml, offset = 0,
|
|
|
188
181
|
isGhost: false,
|
|
189
182
|
};
|
|
190
183
|
}
|
|
191
|
-
case '
|
|
192
|
-
case '
|
|
193
|
-
|
|
184
|
+
case 'component':
|
|
185
|
+
case 'custom-element':
|
|
186
|
+
case 'fragment':
|
|
187
|
+
case 'element': {
|
|
188
|
+
if (originNode.name?.toLowerCase() === '!doctype') {
|
|
194
189
|
return {
|
|
195
|
-
uuid:
|
|
190
|
+
uuid: uuid(),
|
|
196
191
|
raw,
|
|
197
192
|
name: originNode.name,
|
|
198
193
|
publicId: '',
|
|
@@ -212,50 +207,77 @@ function nodeize(originNode, prevNode, parentNode, scopeNS, rawHtml, offset = 0,
|
|
|
212
207
|
isGhost: false,
|
|
213
208
|
};
|
|
214
209
|
}
|
|
215
|
-
return parseElement(originNode
|
|
216
|
-
}
|
|
217
|
-
case 'Fragment': {
|
|
218
|
-
return originNode.children ? traverse(originNode, parentNode, scopeNS, rawHtml, offset) : null;
|
|
210
|
+
return parseElement(originNode, scopeNS, rawHtml, startLine, startCol, startOffset, parentNode, prevNode, nextNode, offset, options);
|
|
219
211
|
}
|
|
220
212
|
default: {
|
|
221
213
|
return null;
|
|
222
214
|
}
|
|
223
215
|
}
|
|
224
216
|
}
|
|
225
|
-
function parseElement(
|
|
226
|
-
|
|
217
|
+
function parseElement(
|
|
218
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
219
|
+
originNode, scopeNS, rawHtml, startLine, startCol, startOffset,
|
|
220
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
221
|
+
parentNode,
|
|
222
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
223
|
+
prevNode,
|
|
224
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
225
|
+
nextNode, offset, options) {
|
|
226
|
+
if (!originNode.position) {
|
|
227
|
+
throw new TypeError("Node doesn't have position");
|
|
228
|
+
}
|
|
229
|
+
let startTagRaw;
|
|
227
230
|
let childrenStart;
|
|
228
231
|
let childrenEnd;
|
|
229
|
-
if (originNode.children
|
|
230
|
-
childrenStart = originNode.children[0].start + offset;
|
|
231
|
-
childrenEnd = originNode.children[originNode.children.length - 1]
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
childrenEnd = originNode.content.end + offset;
|
|
236
|
-
}
|
|
237
|
-
else if (/\/>$/.test(raw)) {
|
|
238
|
-
childrenStart = originNode.end + offset;
|
|
239
|
-
childrenEnd = originNode.end + offset;
|
|
232
|
+
if (originNode.children[0]) {
|
|
233
|
+
childrenStart = (originNode.children[0].position?.start?.offset ?? 0) + offset;
|
|
234
|
+
childrenEnd = (originNode.children[originNode.children.length - 1]?.position?.end?.offset ?? 0) + offset;
|
|
235
|
+
const startTagStartOffset = originNode.position.start.offset + offset;
|
|
236
|
+
const startTagEndOffset = childrenStart;
|
|
237
|
+
startTagRaw = rawHtml.slice(startTagStartOffset, startTagEndOffset);
|
|
240
238
|
}
|
|
241
239
|
else {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
240
|
+
childrenStart = offset + (originNode.position.end?.offset ?? nextNode?.endOffset ?? rawHtml.length - offset);
|
|
241
|
+
childrenEnd = childrenStart;
|
|
242
|
+
const startTagStartOffset = originNode.position.start.offset + offset;
|
|
243
|
+
let startTagEndOffset = childrenStart;
|
|
244
|
+
startTagRaw = rawHtml.slice(startTagStartOffset, startTagEndOffset);
|
|
245
|
+
const expectedCloseTag = `</${originNode.name}>`;
|
|
246
|
+
if (startTagRaw.includes(expectedCloseTag)) {
|
|
247
|
+
childrenStart -= expectedCloseTag.length;
|
|
248
|
+
childrenEnd = childrenStart;
|
|
249
|
+
startTagRaw = startTagRaw.replace(expectedCloseTag, '');
|
|
250
|
+
}
|
|
251
|
+
else {
|
|
252
|
+
let startTagRawMasked = startTagRaw;
|
|
253
|
+
for (const attr of originNode.attributes) {
|
|
254
|
+
startTagRawMasked = startTagRawMasked.replace(attr.value, ' '.repeat(attr.value.length));
|
|
255
|
+
}
|
|
256
|
+
const closeChars = '>';
|
|
257
|
+
const closeOffset = startTagRawMasked.indexOf(closeChars) + closeChars.length;
|
|
258
|
+
startTagEndOffset = startTagStartOffset + closeOffset;
|
|
259
|
+
startTagRaw = rawHtml.slice(startTagStartOffset, startTagEndOffset);
|
|
260
|
+
}
|
|
261
|
+
// console.log({
|
|
262
|
+
// originNode,
|
|
263
|
+
// attrs: originNode.attributes,
|
|
264
|
+
// startTagRaw,
|
|
265
|
+
// startTagStartOffset,
|
|
266
|
+
// startTagEndOffset,
|
|
267
|
+
// expectedCloseTag,
|
|
268
|
+
// childrenStart,
|
|
269
|
+
// childrenEnd,
|
|
270
|
+
// });
|
|
246
271
|
}
|
|
247
|
-
const
|
|
248
|
-
const startTagEndOffset = childrenStart;
|
|
249
|
-
const startTagRaw = rawHtml.slice(startTagStartOffset, startTagEndOffset);
|
|
250
|
-
const tagTokens = (0, html_parser_1.parseRawTag)(startTagRaw, startLine, startCol, startOffset);
|
|
272
|
+
const tagTokens = parseRawTag(startTagRaw, startLine, startCol, startOffset);
|
|
251
273
|
const tagName = tagTokens.tagName;
|
|
252
274
|
let endTag = null;
|
|
253
|
-
if (childrenEnd < originNode.end + offset) {
|
|
254
|
-
const endTagLoc =
|
|
255
|
-
const endTagTokens =
|
|
275
|
+
if (childrenEnd < (originNode.position.end?.offset ?? 0) + offset) {
|
|
276
|
+
const endTagLoc = sliceFragment(rawHtml, childrenEnd, (originNode.position.end?.offset ?? 0) + offset);
|
|
277
|
+
const endTagTokens = parseRawTag(endTagLoc.raw, endTagLoc.startLine, endTagLoc.startCol, endTagLoc.startOffset);
|
|
256
278
|
const endTagName = endTagTokens.tagName;
|
|
257
279
|
endTag = {
|
|
258
|
-
uuid:
|
|
280
|
+
uuid: uuid(),
|
|
259
281
|
raw: endTagLoc.raw,
|
|
260
282
|
startOffset: endTagLoc.startOffset,
|
|
261
283
|
endOffset: endTagLoc.endOffset,
|
|
@@ -278,19 +300,21 @@ function parseElement(nodeName, originNode, scopeNS, rawHtml, startLine, startCo
|
|
|
278
300
|
};
|
|
279
301
|
}
|
|
280
302
|
const startTag = {
|
|
281
|
-
uuid:
|
|
303
|
+
uuid: uuid(),
|
|
282
304
|
raw: startTagRaw,
|
|
283
305
|
startOffset,
|
|
284
306
|
endOffset: startOffset + startTagRaw.length,
|
|
285
307
|
startLine,
|
|
286
|
-
endLine:
|
|
308
|
+
endLine: getEndLine(startTagRaw, startLine),
|
|
287
309
|
startCol,
|
|
288
|
-
endCol:
|
|
310
|
+
endCol: getEndCol(startTagRaw, startCol),
|
|
289
311
|
nodeName: tagName,
|
|
290
312
|
type: 'starttag',
|
|
291
313
|
namespace: scopeNS,
|
|
292
|
-
elementType:
|
|
293
|
-
attributes: originNode.attributes.map((
|
|
314
|
+
elementType: detectElementType(tagName, options?.authoredElementName, /^[A-Z]|\./),
|
|
315
|
+
attributes: originNode.attributes.map((
|
|
316
|
+
// eslint-disable-next-line @typescript-eslint/prefer-readonly-parameter-types
|
|
317
|
+
attr, i) => attrTokenizer(attr, originNode.attributes[i + 1] ?? null, rawHtml, startTagRaw, startOffset + startTagRaw.length)),
|
|
294
318
|
hasSpreadAttr: false,
|
|
295
319
|
parentNode,
|
|
296
320
|
prevNode,
|
|
@@ -306,15 +330,8 @@ function parseElement(nodeName, originNode, scopeNS, rawHtml, startLine, startCo
|
|
|
306
330
|
if (endTag) {
|
|
307
331
|
endTag.pearNode = startTag;
|
|
308
332
|
}
|
|
309
|
-
startTag.childNodes =
|
|
333
|
+
startTag.childNodes = ['style', 'script'].includes(tagName)
|
|
334
|
+
? undefined
|
|
335
|
+
: traverse(originNode, startTag, scopeNS, rawHtml, offset, options);
|
|
310
336
|
return startTag;
|
|
311
337
|
}
|
|
312
|
-
function parseStyle(nodes, scopeNS, rawHtml, offset, options) {
|
|
313
|
-
const result = [];
|
|
314
|
-
for (const node of nodes) {
|
|
315
|
-
const { startLine, startCol, startOffset } = (0, parser_utils_1.sliceFragment)(rawHtml, node.start, node.end);
|
|
316
|
-
const styleEl = parseElement('style', node, scopeNS, rawHtml, startLine, startCol, startOffset, null, null, null, offset, options);
|
|
317
|
-
result.push(styleEl);
|
|
318
|
-
}
|
|
319
|
-
return result;
|
|
320
|
-
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/astro-parser",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.290+af676442",
|
|
4
4
|
"description": "astro parser for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"private": false,
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"type": "module",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./lib/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"types": "./lib/index.d.ts",
|
|
11
16
|
"publishConfig": {
|
|
12
17
|
"access": "public"
|
|
13
18
|
},
|
|
@@ -16,11 +21,12 @@
|
|
|
16
21
|
"clean": "tsc --build --clean"
|
|
17
22
|
},
|
|
18
23
|
"dependencies": {
|
|
19
|
-
"@astrojs/parser": "0.
|
|
20
|
-
"@markuplint/html-parser": "3.0.0-dev.
|
|
21
|
-
"@markuplint/ml-ast": "3.0.0-
|
|
22
|
-
"@markuplint/parser-utils": "3.0.0-dev.
|
|
23
|
-
"
|
|
24
|
+
"@astrojs/parser": "0.22.2",
|
|
25
|
+
"@markuplint/html-parser": "3.0.0-dev.290+af676442",
|
|
26
|
+
"@markuplint/ml-ast": "3.0.0-dev.290+af676442",
|
|
27
|
+
"@markuplint/parser-utils": "3.0.0-dev.290+af676442",
|
|
28
|
+
"astro-eslint-parser": "^0.16.0",
|
|
29
|
+
"tslib": "^2.6.2"
|
|
24
30
|
},
|
|
25
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "af6764422feecb56d1d84659028f53daf685bb78"
|
|
26
32
|
}
|
package/tsconfig.test.json
DELETED
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/magic-string/index.d.ts","../../../node_modules/@astrojs/parser/dist/utils/error.d.ts","../../../node_modules/@astrojs/parser/dist/interfaces.d.ts","../../../node_modules/@astrojs/parser/dist/parse/utils/features.d.ts","../../../node_modules/@astrojs/parser/dist/parse/index.d.ts","../../../node_modules/@astrojs/parser/dist/index.d.ts","./src/astro-parser.ts","../ml-ast/lib/types.d.ts","../ml-ast/lib/index.d.ts","../parser-utils/lib/decision.d.ts","../parser-utils/lib/get-location.d.ts","../parser-utils/lib/create-token.d.ts","../parser-utils/lib/idl-attributes.d.ts","../parser-utils/lib/walker.d.ts","../parser-utils/lib/types.d.ts","../parser-utils/lib/ignore-block.d.ts","../parser-utils/lib/ignore-front-matter.d.ts","../parser-utils/lib/debugger.d.ts","../parser-utils/lib/parser-error.d.ts","../parser-utils/lib/detect-element-type.d.ts","../parser-utils/lib/index.d.ts","./src/attr-tokenizer.ts","../html-parser/lib/is-document-fragment.d.ts","../html-parser/lib/parse.d.ts","../html-parser/lib/flatten-nodes.d.ts","../html-parser/lib/remove-deprecated-node.d.ts","../html-parser/lib/get-namespace.d.ts","../html-parser/lib/parse-raw-tag.d.ts","../html-parser/lib/attr-tokenizer.d.ts","../html-parser/lib/index.d.ts","./src/parse.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/bcp-47/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/css-tree/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/node_modules/@types/express/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","dd6a4b050f1016c0318291b42c98ab068e07e208b1ae8e4e27167c2b8007406f","7bec70c0c8d9b7c2679f4adb448b68ce32e0830356f6e2380e815c1c17c72abf","776aaf9c30085a9f5376ac7d731dda337e81ead3003eb455a7b68603607e4a5e","9eb659e1767e56102659a658160d28c1337657e7540f0f1244a6324b667db33a","31adc3db56dccbaec58afd032554654c3294f4992eb7a57a1e4218b28a27d309","d16c5035473d46770a36b2efb43c0bf1903d4b2d4c05c9bcb655beb3ac644dec",{"version":"6b94b1f1b947c4b5368667c5a67cc2be15d829542ebfa16c4cc43bf5f11500a9","signature":"bc60341920649cc298389dd8b18146ee51306fe4f913f014df24915b0d86d320"},"51956a7c3a0ae2f92df270f27e817e4888634fc3fee101dcfb725f4d0078410a","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","6376724527596ee9199df1b374a7c37f57a980e6045f26c7eb8ad217b1be4536","9e4f537a26b821c81b768e76f581ac1a0491b1414ad1ec8e2cc5513cfa0363e4","b5f2fe64c9a05bc11bb616d2bdc4a5c0b7855f009fd4493116f19e657bf82d47","325dc6178b2211d5bc61cc190d6cc188f6141cd2ced4fcc0172c408796aaf688","724ffe33e82f40fb3f4d7ef6e160bbd9a11703d65cb1fce2ac5a079706d57f11","d3958c4339b07dd20e0460a2279c64cb64d4f9aa278e626b0f08c01c2a9732ad","6720e6d8090bd6169b0e09c06355d8a7866b35df1cb0041dc7779cc5e19c2b33","69553d6f2b6dfaa4454946acda2dc9cac0c913e1ada1e5e64687e6c6499d92f4","3dd7e179e143ccff3598b13e7fc028950ec01a3f22f78a805cce1fd1d00dd4dc","65664131c79fb5aefeae0e9bbbbe38062c608a3f15cfe33a9b7492152a06cc8f","c8918990bd7e2b446b281113c29a23ee7991a93a63944d8ca40794392298a2bf","f53e5df144949e946a2ea829ebb7b3cba20dd2ded4b6e070f448b1250b4f76b6",{"version":"0ec7c95303e1fec5494e4474a412bcd9dd335ab53526706be26cbeb354988e9a","signature":"b054c0ab7c892b49b0f4dd074d9fcf1f159192c8bb417f969a89afcceec9c6e8"},"bf356dd705ed34b49f945417950cc210c3c15b4686cb799a284d6b825d71321c","1a1da5552decfd0c419ebbfba1f87cc9b409cace8c2d1bb514d8ea3fd920e6dd","9ffde4657c3e2ebee7e3bec80caed66b7c4c79a436f4434f3c2685b679453750","e9e8ae09420eebc4b554213c1f02dc9ba2bf02edf74413e33dbd4d5306289efe","ef2bd6b1dcc531ec8594416321851165be26afb5fa22afe20bde8809ef14b321","78c9630eead8ad34c4ed122d05fac0dac6002d6cc18907bf2c6b73b91100908a","0c9102347e5106ba850a29539f687ab886583dbd96732c335ea6807b2ccc1177","dc51089340a6a196726075688c9317245e667d88f38a0922da49e2b772cc57f0",{"version":"4421c67ffe6c1c9907c9732f0b656739ab931049ec11b6bb086d75cb3cbd6f3b","signature":"1a1da5552decfd0c419ebbfba1f87cc9b409cace8c2d1bb514d8ea3fd920e6dd"},{"version":"c6455e2359c9986ee60f4131d2ddfee103d8e1933f9d7db7538cc199ed85b184","signature":"0ea4b03027ac7a48f9a5741a9ffcfd62b103adad3a5c9fec8647ad82afa1ab88"},"2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","e2a56bb80f66ac0b6767fd7bb6b337ac3cb9cd4a368b13491e3fd1b5e26d93d6","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",{"version":"57a1cb6f082fa2df46deaa96fa0063463b3393dd39bd09359dab251db28000b9","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","94998ffb6165ce44d492327169a7f7cb0e1e11a967f068fbda6796029a4a40dd","6d8c708a5237a8508ee8553f22143a6d2fb60807de0574b41622c1e281b04c6d","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","eafa2daa16a53d9a42d6ec56ffa607c78e96117fe52c434b5df60220d43b0a1e","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","a55ca8b5f8c6a8535bb26fac1e10132a5338234ca3d5b9ed739fbc8ef41c8075","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e4b4326b61261bf5ffd6de8b4825f00eb11ebb89a51bd92663dd6e660abf4210","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","032cbd1883827ca3728c1400145403b62e65b7b584a0d2115ae538c9edec7936","427ce5854885cfc34387e09de05c1d5c1acf94c2143e1693f1d9ff54880573e7","bed2c4f96fab3348be4a34d88dcb12578c1b2475b07c6acd369e99e227718d81","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","3ad5991645bbea846d4efe615cd847e785ca30fff0205fdffb0f9a3ade3d13df",{"version":"0c3b45b6a42c0074fadd59c5d370592ca48c89a706d903452565ca89b1b2c164","affectsGlobalScope":true},"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","172dddc700c620827370b416d4aafbd7a4abd6f929cb50d6448cf6e3baeca38c","8cfa7e547e353e06dc3b486a400f95eef3a4aa9ded83ae38f325c0ce02e6d708","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","016821973966c7663ee27e1d1c75fa51d5e4f942506c44e083feda52c82e0848","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","657d689b204952d36655db5c6ba626414ff5e97fcc278f41edf872a6d3cc9e92","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","7426c455724cc1e1e7e6de540803db0a5858563e442b0640819dd316e4bc913c","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","a74476691118f376a4d42c9721f76c5c896e41393df98c7789589f618ad1dbd5","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","dac991ec2b7f56b1a39f74a65cca109ec9cde62df848c5bd41524030c894e341","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","d64037d2df4c89d6d2113b1aaad4b59259d448dbd8862bc20003d1caef23b1d4","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","2836f718f2458d81c2df3d01d1f998f75631b0763bd9298e1bd15331cc4f2632","44a9aadd9a9e24c7fab7f5b271c8eb89d0e6af07bbc637adae7f15f1c1b6f70e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","d258b243f130c00b958bfad96586b5413bccc86cf17e9339e6a94d45f7e7b84f","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd","3c71707988135662b344d59c4f92d2ea37b1f198149b762693db61e30bdaae9a","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","28288f5e5f8b7b895ed2abe6359c1da3e0d14a64b5aef985071285671f347c01"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[59,60,61,139,213,214,215],[57,58,139,213,214,215],[59,139,213,214,215],[139,213,214,215],[89,139,213,214,215],[139,192,213,214,215],[89,90,91,92,93,139,213,214,215],[89,91,139,213,214,215],[114,139,146,147,213,214,215],[106,139,146,213,214,215],[139,146,213,214,215],[139,151,152,153,154,155,156,157,158,159,160,161,162,213,214,215],[111,139,146,213,214,215],[138,139,146,167,213,214,215],[114,139,146,213,214,215],[139,170,213,214,215],[139,174,175,213,214,215],[139,172,173,174,213,214,215],[111,114,139,146,165,166,213,214,215],[139,148,166,167,178,179,213,214,215],[112,139,146,213,214,215],[111,112,139,146,182,213,214,215],[111,114,116,119,128,138,139,146,213,214,215],[139,187,213,214,215],[139,188,213,214,215],[139,194,197,213,214,215],[139,190,196,213,214,215],[139,194,213,214,215],[139,191,195,213,214,215],[139,193,213,214,215],[111,139,141,146,211,212,214,215],[139,213,214],[139,213,215],[139,213,214,215,217,219,220,221,222,223,224,225,226,227,228,229],[139,213,214,215,217,218,220,221,222,223,224,225,226,227,228,229],[139,213,214,215,218,219,220,221,222,223,224,225,226,227,228,229],[139,213,214,215,217,218,219,221,222,223,224,225,226,227,228,229],[139,213,214,215,217,218,219,220,222,223,224,225,226,227,228,229],[139,213,214,215,217,218,219,220,221,223,224,225,226,227,228,229],[139,213,214,215,217,218,219,220,221,222,224,225,226,227,228,229],[139,213,214,215,217,218,219,220,221,222,223,225,226,227,228,229],[139,213,214,215,217,218,219,220,221,222,223,224,226,227,228,229],[139,213,214,215,217,218,219,220,221,222,223,224,225,227,228,229],[139,213,214,215,217,218,219,220,221,222,223,224,225,226,228,229],[139,213,214,215,217,218,219,220,221,222,223,224,225,226,227,229],[139,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228],[139,213,214,215,230],[114,138,139,146,213,214,215,234,235],[114,128,139,146,213,214,215],[96,139,213,214,215],[99,139,213,214,215],[100,105,139,213,214,215],[101,111,112,119,128,138,139,213,214,215],[101,102,111,119,139,213,214,215],[103,139,213,214,215],[104,105,112,120,139,213,214,215],[105,128,135,139,213,214,215],[106,108,111,119,139,213,214,215],[107,139,213,214,215],[108,109,139,213,214,215],[110,111,139,213,214,215],[111,139,213,214,215],[111,112,113,128,138,139,213,214,215],[111,112,113,128,139,213,214,215],[114,119,128,138,139,213,214,215],[111,112,114,115,119,128,135,138,139,213,214,215],[114,116,128,135,138,139,213,214,215],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,213,214,215],[111,117,139,213,214,215],[118,138,139,213,214,215],[108,111,119,128,139,213,214,215],[120,139,213,214,215],[121,139,213,214,215],[99,122,139,213,214,215],[123,137,139,143,213,214,215],[124,139,213,214,215],[125,139,213,214,215],[111,126,139,213,214,215],[126,127,139,141,213,214,215],[111,128,129,130,139,213,214,215],[128,130,139,213,214,215],[128,129,139,213,214,215],[131,139,213,214,215],[132,139,213,214,215],[111,133,134,139,213,214,215],[133,134,139,213,214,215],[105,119,128,135,139,213,214,215],[136,139,213,214,215],[119,137,139,213,214,215],[100,114,125,138,139,213,214,215],[105,139,213,214,215],[128,139,140,213,214,215],[139,141,213,214,215],[139,142,213,214,215],[100,105,111,113,122,128,138,139,141,143,213,214,215],[128,139,144,213,214,215],[139,213,214,215,239],[139,213,214,215,240],[138,139,146,213,214,215],[139,213,214,215,251],[139,213,214,215,253,292],[139,213,214,215,253,277,292],[139,213,214,215,292],[139,213,214,215,253],[139,213,214,215,253,278,292],[139,213,214,215,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291],[139,213,214,215,278,292],[112,139,213,214,215,293],[139,148,166,167,178,213,214,215],[114,139,146,177,213,214,215],[139,213,214,215,299],[139,146,213,214,215,304,305,306,307,308,309,310,311,312,313,314],[139,213,214,215,303,304,313],[139,213,214,215,304,313],[139,213,214,215,296,303,304,313],[139,213,214,215,303,304,305,306,307,308,309,310,311,312,314],[139,213,214,215,304],[105,139,213,214,215,303,313],[105,139,146,213,214,215,250,299,300,302,315],[111,114,116,128,135,138,139,144,146,213,214,215],[139,213,214,215,319],[139,200,213,214,215],[139,199,200,213,214,215],[139,199,213,214,215],[139,199,200,201,203,204,207,208,209,210,213,214,215],[139,200,204,213,214,215],[139,199,200,201,203,204,205,206,213,214,215],[139,199,204,213,214,215],[139,204,208,213,214,215],[139,200,201,202,213,214,215],[139,201,213,214,215],[139,199,200,204,213,214,215],[139,213,214,215,248],[139,173,213,214,215,246,247],[139,173,213,214,215,248],[100,114,119,135,139,174,213,214,215,246,248,249,250],[56,62,139,213,214,215],[56,63,65,77,139,213,214,215],[56,87,139,213,214,215],[56,63,65,77,78,86,139,213,214,215],[65,139,213,214,215],[79,80,81,82,83,84,85,139,213,214,215],[64,139,213,214,215],[65,71,139,213,214,215],[66,67,68,69,70,72,73,74,75,76,139,213,214,215],[62],[63,65],[87],[65]],"referencedMap":[[62,1],[59,2],[61,3],[60,4],[58,4],[91,5],[89,4],[193,6],[192,4],[94,7],[90,5],[92,8],[93,5],[95,4],[148,9],[149,10],[150,11],[151,4],[152,4],[153,4],[154,4],[155,4],[157,4],[163,12],[156,4],[161,4],[158,4],[159,4],[160,4],[162,4],[164,13],[168,14],[147,15],[169,4],[171,16],[176,17],[172,4],[175,18],[174,4],[167,19],[180,20],[179,19],[181,21],[183,22],[184,21],[185,4],[186,23],[187,4],[188,24],[189,25],[198,26],[190,4],[197,27],[195,28],[196,29],[194,30],[213,31],[215,32],[214,33],[173,4],[216,4],[218,34],[219,35],[217,36],[220,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[231,47],[177,4],[182,4],[232,4],[170,4],[233,4],[235,4],[236,48],[234,49],[96,50],[97,50],[99,51],[100,52],[101,53],[102,54],[103,55],[104,56],[105,57],[106,58],[107,59],[108,60],[109,60],[110,61],[111,62],[112,63],[113,64],[98,4],[145,4],[114,65],[115,66],[116,67],[146,68],[117,69],[118,70],[119,71],[120,72],[121,73],[122,74],[123,75],[124,76],[125,77],[126,78],[127,79],[128,80],[130,81],[129,82],[131,83],[132,84],[133,85],[134,86],[135,87],[136,88],[137,89],[138,90],[139,91],[140,92],[141,93],[142,94],[143,95],[144,96],[237,4],[238,4],[240,97],[239,98],[241,4],[242,4],[166,4],[165,4],[243,4],[244,99],[252,100],[277,101],[278,102],[253,103],[256,103],[275,101],[276,101],[266,101],[265,104],[263,101],[258,101],[271,101],[269,101],[273,101],[257,101],[270,101],[274,101],[259,101],[260,101],[272,101],[254,101],[261,101],[262,101],[264,101],[268,101],[279,105],[267,101],[255,101],[292,106],[291,4],[286,105],[288,107],[287,105],[280,105],[281,105],[283,105],[285,105],[289,107],[290,107],[282,107],[284,107],[294,108],[293,109],[178,110],[295,15],[296,4],[297,4],[298,4],[212,4],[300,111],[230,4],[301,4],[315,112],[314,113],[305,114],[306,115],[313,116],[307,115],[308,114],[309,114],[310,114],[311,117],[304,118],[312,113],[303,4],[316,119],[317,4],[318,120],[319,4],[320,121],[247,4],[302,4],[245,4],[191,4],[57,4],[201,122],[210,123],[199,4],[200,124],[211,125],[206,126],[207,127],[205,128],[209,129],[203,130],[202,131],[208,132],[204,123],[299,4],[250,4],[56,4],[11,4],[13,4],[12,4],[2,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[21,4],[3,4],[4,4],[25,4],[22,4],[23,4],[24,4],[26,4],[27,4],[28,4],[5,4],[29,4],[30,4],[31,4],[32,4],[6,4],[36,4],[33,4],[34,4],[35,4],[37,4],[7,4],[38,4],[43,4],[44,4],[39,4],[40,4],[41,4],[42,4],[8,4],[48,4],[45,4],[46,4],[47,4],[49,4],[9,4],[50,4],[51,4],[52,4],[53,4],[54,4],[1,4],[10,4],[55,4],[249,133],[248,134],[246,135],[251,136],[63,137],[78,138],[88,139],[87,140],[85,141],[81,141],[83,141],[86,142],[79,4],[84,141],[80,141],[82,141],[65,143],[64,4],[68,141],[74,141],[66,4],[76,141],[67,4],[69,4],[72,144],[73,4],[77,145],[75,4],[71,4],[70,141]],"exportedModulesMap":[[62,1],[59,2],[61,3],[60,4],[58,4],[91,5],[89,4],[193,6],[192,4],[94,7],[90,5],[92,8],[93,5],[95,4],[148,9],[149,10],[150,11],[151,4],[152,4],[153,4],[154,4],[155,4],[157,4],[163,12],[156,4],[161,4],[158,4],[159,4],[160,4],[162,4],[164,13],[168,14],[147,15],[169,4],[171,16],[176,17],[172,4],[175,18],[174,4],[167,19],[180,20],[179,19],[181,21],[183,22],[184,21],[185,4],[186,23],[187,4],[188,24],[189,25],[198,26],[190,4],[197,27],[195,28],[196,29],[194,30],[213,31],[215,32],[214,33],[173,4],[216,4],[218,34],[219,35],[217,36],[220,37],[221,38],[222,39],[223,40],[224,41],[225,42],[226,43],[227,44],[228,45],[229,46],[231,47],[177,4],[182,4],[232,4],[170,4],[233,4],[235,4],[236,48],[234,49],[96,50],[97,50],[99,51],[100,52],[101,53],[102,54],[103,55],[104,56],[105,57],[106,58],[107,59],[108,60],[109,60],[110,61],[111,62],[112,63],[113,64],[98,4],[145,4],[114,65],[115,66],[116,67],[146,68],[117,69],[118,70],[119,71],[120,72],[121,73],[122,74],[123,75],[124,76],[125,77],[126,78],[127,79],[128,80],[130,81],[129,82],[131,83],[132,84],[133,85],[134,86],[135,87],[136,88],[137,89],[138,90],[139,91],[140,92],[141,93],[142,94],[143,95],[144,96],[237,4],[238,4],[240,97],[239,98],[241,4],[242,4],[166,4],[165,4],[243,4],[244,99],[252,100],[277,101],[278,102],[253,103],[256,103],[275,101],[276,101],[266,101],[265,104],[263,101],[258,101],[271,101],[269,101],[273,101],[257,101],[270,101],[274,101],[259,101],[260,101],[272,101],[254,101],[261,101],[262,101],[264,101],[268,101],[279,105],[267,101],[255,101],[292,106],[291,4],[286,105],[288,107],[287,105],[280,105],[281,105],[283,105],[285,105],[289,107],[290,107],[282,107],[284,107],[294,108],[293,109],[178,110],[295,15],[296,4],[297,4],[298,4],[212,4],[300,111],[230,4],[301,4],[315,112],[314,113],[305,114],[306,115],[313,116],[307,115],[308,114],[309,114],[310,114],[311,117],[304,118],[312,113],[303,4],[316,119],[317,4],[318,120],[319,4],[320,121],[247,4],[302,4],[245,4],[191,4],[57,4],[201,122],[210,123],[199,4],[200,124],[211,125],[206,126],[207,127],[205,128],[209,129],[203,130],[202,131],[208,132],[204,123],[299,4],[250,4],[56,4],[11,4],[13,4],[12,4],[2,4],[14,4],[15,4],[16,4],[17,4],[18,4],[19,4],[20,4],[21,4],[3,4],[4,4],[25,4],[22,4],[23,4],[24,4],[26,4],[27,4],[28,4],[5,4],[29,4],[30,4],[31,4],[32,4],[6,4],[36,4],[33,4],[34,4],[35,4],[37,4],[7,4],[38,4],[43,4],[44,4],[39,4],[40,4],[41,4],[42,4],[8,4],[48,4],[45,4],[46,4],[47,4],[49,4],[9,4],[50,4],[51,4],[52,4],[53,4],[54,4],[1,4],[10,4],[55,4],[249,133],[248,134],[246,135],[251,136],[63,146],[78,147],[88,148],[87,149],[85,141],[81,141],[83,141],[86,142],[79,4],[84,141],[80,141],[82,141],[65,143],[64,4],[68,141],[74,141],[66,4],[76,141],[67,4],[69,4],[72,144],[73,4],[77,145],[75,4],[71,4],[70,141]],"semanticDiagnosticsPerFile":[62,59,61,60,58,91,89,193,192,94,90,92,93,95,148,149,150,151,152,153,154,155,157,163,156,161,158,159,160,162,164,168,147,169,171,176,172,175,174,167,180,179,181,183,184,185,186,187,188,189,198,190,197,195,196,194,213,215,214,173,216,218,219,217,220,221,222,223,224,225,226,227,228,229,231,177,182,232,170,233,235,236,234,96,97,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,98,145,114,115,116,146,117,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,237,238,240,239,241,242,166,165,243,244,252,277,278,253,256,275,276,266,265,263,258,271,269,273,257,270,274,259,260,272,254,261,262,264,268,279,267,255,292,291,286,288,287,280,281,283,285,289,290,282,284,294,293,178,295,296,297,298,212,300,230,301,315,314,305,306,313,307,308,309,310,311,304,312,303,316,317,318,319,320,247,302,245,191,57,201,210,199,200,211,206,207,205,209,203,202,208,204,299,250,56,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,54,1,10,55,249,248,246,251,63,78,88,87,85,81,83,86,79,84,80,82,65,64,68,74,66,76,67,69,72,73,77,75,71,70],"latestChangedDtsFile":"./lib/attr-tokenizer.d.ts"},"version":"4.9.4"}
|