@dra2020/baseclient 1.0.140 → 1.0.142
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/dist/baseclient.js
CHANGED
|
@@ -1306,7 +1306,7 @@ class Evaluator {
|
|
|
1306
1306
|
}
|
|
1307
1307
|
}
|
|
1308
1308
|
}
|
|
1309
|
-
const reInvalidChars = /[
|
|
1309
|
+
const reInvalidChars = /[\[\]\\]/;
|
|
1310
1310
|
const reExpr = /^=(.*)$/;
|
|
1311
1311
|
class FormatDetail {
|
|
1312
1312
|
constructor(pattern, options) {
|
|
@@ -1709,10 +1709,10 @@ class Parser {
|
|
|
1709
1709
|
this.clauses = clauses;
|
|
1710
1710
|
this.combineParenthetical();
|
|
1711
1711
|
this.convertOpToText();
|
|
1712
|
-
this.combineUnary();
|
|
1713
|
-
this.convertOpToText();
|
|
1714
1712
|
this.combineBinary(TokType.Colon);
|
|
1715
1713
|
this.convertOpToText();
|
|
1714
|
+
this.combineUnary();
|
|
1715
|
+
this.convertOpToText();
|
|
1716
1716
|
this.combineBinary(TokType.And);
|
|
1717
1717
|
this.convertOpToText();
|
|
1718
1718
|
this.combineBinary(TokType.Or);
|