We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dc635d commit 7afecb5Copy full SHA for 7afecb5
sample/sat.xsl
@@ -1,5 +1,5 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
version="3.0">
4
- <xsl:sequence select="self::*:col"/>
+ <xsl:sequence select="(//(and))"/>
5
</xsl:stylesheet>
src/xsltTokenDiagnostics.ts
@@ -981,7 +981,7 @@ export class XsltTokenDiagnostics {
981
) {
982
// allow: ) !=
983
isXPathError = tv === '*:';
984
- } else if (tv === '*:') {
+ } else if (tv === '*:' || tv === '//') {
985
isXPathError = false;
986
} else if (!((tv === '{}' && (pv === 'map' || pv === 'array')) || tv === '()' || tv === '[]')) {
987
isXPathError = true;
0 commit comments