[Bug 29364] XQueryX stylesheet is missing support for unaryLookup

https://www.w3.org/Bugs/Public/show_bug.cgi?id=29364

--- Comment #1 from Josh Spiegel <josh.spiegel@oracle.com> ---
Tentative fix is to modify lookup as follows:

  <xsl:template match="xqx:lookup | xqx:unaryLookup">
    <xsl:text> ?</xsl:text>
    <xsl:choose>
      <xsl:when test="xqx:star | xqx:NCName | xqx:integerLiteral">
        <xsl:apply-templates/>
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select="$LPAREN"/>
        <xsl:apply-templates/>
        <xsl:value-of select="$RPAREN"/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 8 January 2016 21:49:42 UTC