Skip to content

Commit 6df0637

Browse files
committed
chore(Packages): Updates dependencies
1 parent bf7ab62 commit 6df0637

File tree

7 files changed

+1554
-1717
lines changed

7 files changed

+1554
-1717
lines changed

build/xml/constants.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export declare const enum NodeType {
88
COMMENT = 6,
99
TEXT = 7,
1010
NAMESPACE_NODE = 8,
11-
NODE = 9,
11+
NODE = 9
1212
}
1313
export declare const enum ParserState {
1414
ATTRIBUTE = 0,
@@ -42,7 +42,7 @@ export declare const enum ParserState {
4242
XML_PROLOG_ATTRIBUTE_NAME = 28,
4343
XML_PROLOG_ATTRIBUTE_VALUE = 29,
4444
XML_PROLOG_ATTRIBUTE_VALUE_QUOTED = 30,
45-
XML_PROLOG_ENDING = 31,
45+
XML_PROLOG_ENDING = 31
4646
}
4747
export declare const Char: RegExp;
4848
export declare const RestrictedChar: RegExp;

build/xml/xml_node.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ export declare class XMLNode {
1313
attr(name: string): string | undefined;
1414
text(query?: string): string;
1515
toJSON(): SerializedXMLElement;
16-
private innerText(nodes);
16+
private innerText;
1717
}

build/xml/xml_parser.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ export declare class XMLParser {
2222
private entityBuffer;
2323
private readonly predefinedEntities;
2424
constructor();
25-
private isQuote(c);
26-
private error(message);
27-
private newDocumentRoot();
28-
private resetElement(selfClosing);
29-
private closeTag();
30-
private newElement();
31-
private newProcessingInstruction(piTarget, piContent);
32-
private newTextNode();
33-
private newCommentNode(comment);
34-
private addAttribute();
25+
private isQuote;
26+
private error;
27+
private newDocumentRoot;
28+
private resetElement;
29+
private closeTag;
30+
private newElement;
31+
private newProcessingInstruction;
32+
private newTextNode;
33+
private newCommentNode;
34+
private addAttribute;
3535
parse(str: string): XMLResult;
3636
}

build/xml/xml_traversal.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ export declare class XMLTraversal {
44
private startNode;
55
constructor(startNode: XMLNode);
66
find(query: string): XMLNode[];
7-
private compare<T>(compare, left, right);
8-
private intersect(a, b);
9-
private nonEmptyIndices(arr);
10-
private shuntingYard(contextNodes, node);
11-
private handlePredicate(predicate, currentNodes);
12-
private getAxisNodes(currentNodes, axis);
13-
private intersectSelf(currentNode, axis, result);
14-
private getAllDescendants(node, result);
7+
private compare;
8+
private intersect;
9+
private nonEmptyIndices;
10+
private shuntingYard;
11+
private handlePredicate;
12+
private getAxisNodes;
13+
private intersectSelf;
14+
private getAllDescendants;
1515
}

build/xpath/constants.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export declare const enum AstNodes {
22
PathExpression = 0,
33
StepExpression = 1,
4-
BinaryOperation = 2,
4+
BinaryOperation = 2
55
}
66
export declare const enum Axis {
77
Ancestor = 0,
@@ -15,17 +15,17 @@ export declare const enum Axis {
1515
Parent = 8,
1616
Preceding = 9,
1717
PrecedingSibling = 10,
18-
Self = 11,
18+
Self = 11
1919
}
2020
export declare const enum NodeTest {
2121
KindTest = 0,
22-
NameTest = 1,
22+
NameTest = 1
2323
}
2424
export declare const enum States {
2525
Begin = 0,
2626
PathExpression = 1,
2727
Predicate = 2,
28-
NodeKindArgs = 3,
28+
NodeKindArgs = 3
2929
}
3030
export declare const enum TokenTypes {
3131
Abbrevation = 0,
@@ -34,5 +34,5 @@ export declare const enum TokenTypes {
3434
Operator = 3,
3535
Literal = 4,
3636
Comment = 5,
37-
Whitespace = 6,
37+
Whitespace = 6
3838
}

0 commit comments

Comments
 (0)