@podlite/schema 0.0.42 → 0.0.44
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/CHANGELOG.podlite +8 -0
- package/esm/grammar.js +37 -42
- package/esm/grammar.js.map +1 -1
- package/esm/grammarfc.js +10 -15
- package/esm/grammarfc.js.map +1 -1
- package/esm/selectors.js +29 -15
- package/esm/selectors.js.map +1 -1
- package/lib/grammar.js +37 -42
- package/lib/grammarfc.js +10 -15
- package/lib/selectors.js +29 -15
- package/package.json +1 -1
package/CHANGELOG.podlite
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
=head1 Upcoming
|
|
4
4
|
|
|
5
|
+
=head1 0.0.44
|
|
6
|
+
|
|
7
|
+
=item allow single-letter identifiers (@schueani in podlite/podlite-desktop#53)
|
|
8
|
+
|
|
9
|
+
=head1 0.0.43
|
|
10
|
+
|
|
11
|
+
=item C<runSelector> predicates match attributes inherited from C<=config> defaults, resolved in source order
|
|
12
|
+
|
|
5
13
|
=head1 0.0.42
|
|
6
14
|
|
|
7
15
|
=item add C<=boundary> directive for marking structural section transitions. Optional C<:caption> attribute renders as C<title> on HTML C<<hr>>; Markdown outputs C<--->; JSX outputs C<hr> element
|
package/esm/grammar.js
CHANGED
|
@@ -6093,44 +6093,44 @@ function peg$parse(input, options) {
|
|
|
6093
6093
|
s3 = peg$parse_();
|
|
6094
6094
|
if (s3 !== peg$FAILED) {
|
|
6095
6095
|
s4 = peg$currPos;
|
|
6096
|
-
s5 = peg$
|
|
6097
|
-
if (
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6096
|
+
s5 = peg$currPos;
|
|
6097
|
+
if (peg$c169.test(input.charAt(peg$currPos))) {
|
|
6098
|
+
s6 = input.charAt(peg$currPos);
|
|
6099
|
+
peg$currPos++;
|
|
6100
|
+
}
|
|
6101
|
+
else {
|
|
6102
|
+
s6 = peg$FAILED;
|
|
6103
|
+
if (peg$silentFails === 0) {
|
|
6104
|
+
peg$fail(peg$c170);
|
|
6105
|
+
}
|
|
6106
|
+
}
|
|
6107
|
+
if (s6 !== peg$FAILED) {
|
|
6108
|
+
if (input.substr(peg$currPos, 2) === peg$c171) {
|
|
6109
|
+
s7 = peg$c171;
|
|
6110
|
+
peg$currPos += 2;
|
|
6102
6111
|
}
|
|
6103
6112
|
else {
|
|
6104
|
-
|
|
6113
|
+
s7 = peg$FAILED;
|
|
6105
6114
|
if (peg$silentFails === 0) {
|
|
6106
|
-
peg$fail(peg$
|
|
6115
|
+
peg$fail(peg$c172);
|
|
6107
6116
|
}
|
|
6108
6117
|
}
|
|
6109
|
-
if (
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
peg$currPos += 2;
|
|
6113
|
-
}
|
|
6114
|
-
else {
|
|
6115
|
-
s7 = peg$FAILED;
|
|
6116
|
-
if (peg$silentFails === 0) {
|
|
6117
|
-
peg$fail(peg$c172);
|
|
6118
|
-
}
|
|
6119
|
-
}
|
|
6120
|
-
if (s7 !== peg$FAILED) {
|
|
6121
|
-
s6 = [s6, s7];
|
|
6122
|
-
s5 = s6;
|
|
6123
|
-
}
|
|
6124
|
-
else {
|
|
6125
|
-
peg$currPos = s5;
|
|
6126
|
-
s5 = peg$FAILED;
|
|
6127
|
-
}
|
|
6118
|
+
if (s7 !== peg$FAILED) {
|
|
6119
|
+
s6 = [s6, s7];
|
|
6120
|
+
s5 = s6;
|
|
6128
6121
|
}
|
|
6129
6122
|
else {
|
|
6130
6123
|
peg$currPos = s5;
|
|
6131
6124
|
s5 = peg$FAILED;
|
|
6132
6125
|
}
|
|
6133
6126
|
}
|
|
6127
|
+
else {
|
|
6128
|
+
peg$currPos = s5;
|
|
6129
|
+
s5 = peg$FAILED;
|
|
6130
|
+
}
|
|
6131
|
+
if (s5 === peg$FAILED) {
|
|
6132
|
+
s5 = peg$parsestrictIdentifier();
|
|
6133
|
+
}
|
|
6134
6134
|
if (s5 !== peg$FAILED) {
|
|
6135
6135
|
s4 = input.substring(s4, peg$currPos);
|
|
6136
6136
|
}
|
|
@@ -6596,24 +6596,19 @@ function peg$parse(input, options) {
|
|
|
6596
6596
|
peg$fail(peg$c45);
|
|
6597
6597
|
}
|
|
6598
6598
|
}
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
peg$fail(peg$c45);
|
|
6610
|
-
}
|
|
6599
|
+
while (s4 !== peg$FAILED) {
|
|
6600
|
+
s3.push(s4);
|
|
6601
|
+
if (peg$c44.test(input.charAt(peg$currPos))) {
|
|
6602
|
+
s4 = input.charAt(peg$currPos);
|
|
6603
|
+
peg$currPos++;
|
|
6604
|
+
}
|
|
6605
|
+
else {
|
|
6606
|
+
s4 = peg$FAILED;
|
|
6607
|
+
if (peg$silentFails === 0) {
|
|
6608
|
+
peg$fail(peg$c45);
|
|
6611
6609
|
}
|
|
6612
6610
|
}
|
|
6613
6611
|
}
|
|
6614
|
-
else {
|
|
6615
|
-
s3 = peg$FAILED;
|
|
6616
|
-
}
|
|
6617
6612
|
if (s3 !== peg$FAILED) {
|
|
6618
6613
|
s2 = [s2, s3];
|
|
6619
6614
|
s1 = s2;
|