Page 1 of 1

Syntax highlighting of XPath 3.1 expression with curly braces array constructor and simple map operator fails

Posted: Fri Sep 06, 2019 5:47 pm
by Martin Honnen
Using XML Editor 21.1, build 2019071807, I have an XSLT 3 document with the code

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:saxon="http://saxon.sf.net/"
    exclude-result-prefixes="#all" expand-text="yes">

    <xsl:mode on-no-match="shallow-skip" streamable="yes"/>

    <xsl:output indent="yes"/>

    <xsl:template match="/*">
        <xsl:for-each select="item">
            <xsl:result-document href="item-{@id}.json" method="json"
                indent="yes">
                <xsl:sequence select="array {* ! array {. => tokenize()}}"/>
            </xsl:result-document>
        </xsl:for-each>
    </xsl:template>

</xsl:stylesheet>
in the text editor where the XPath expression in the select attribute of the `xsl:sequence` element is not colourized well, the part

Code: Select all

! array {. => tokenize()}}
is all displayed in the same red color.

The same happens in the XQuery/XPath builder with that expression

Code: Select all

array {* ! array {. => tokenize()}}

Re: Syntax highlighting of XPath 3.1 expression with curly braces array constructor and simple map operator fails

Posted: Tue Sep 10, 2019 6:14 pm
by adrian
Hello,

Thank you for the feedback.
I was able to reproduce the issue with the example you have provided. I've logged an issue to investigate and resolve in a future release. For future reference it is issue EXM-44128.

Regards,
Adrian

Re: Syntax highlighting of XPath 3.1 expression with curly braces array constructor and simple map operator fails

Posted: Tue Feb 18, 2020 4:39 pm
by teo
Hello Martin,

Just wanted to let you know that oXygen 22 (released a few days ago) solves the issue you reported on this thread.

Regards,
Teo Timplaru
oXygen XML