Skip to content

Commit ab39ed4

Browse files
committed
update error example
1 parent 3a3277b commit ab39ed4

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

sample/new.xsl

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
11
<xsl:template xmlns:xsl="abc" xmlns:xslt="abcd" xslt:test="abcd" match="pattern" mode="#default">
22
<root>
33
<xsl:param name="p1" as="node()"/>
4-
<xsl:variable name="a" as="xs:integer" select="5"/>
4+
<xsl:variable name="ax" as="xs:integer" select="5"/>
55

66
<xsl:variable name="b" as="xs:ingeter" select="2">
7-
<xsl:sequence select="$a, $b, $c"/>
7+
<xsl:sequence select="$a, $b, $p1"/>
8+
<xsl:variable name="a" as="xs:integer" select="5"/>
9+
10+
<xsl:variable name="b" as="xs:ingeter" select="2">
11+
<xsl:sequence select="$a, $b, $p1"/>
12+
</xsl:variable>
13+
14+
15+
<xsl:variable name="q" as="xs:integer" select="1"/>
16+
<xsl:variable name="d" as="xs:integer" select="$q"/>
17+
818
</xsl:variable>
919
</root>
1020

11-
<xsl:variable name="d" as="xs:integer" select="6"/>
21+
<xsl:variable name="d" as="xs:integer" select="$c"/>
22+
23+
<xsl:variable name="e" as="xs:integer" select="$c"/>
24+
1225

1326

1427
<xsl:variable name="c" as="xs:integer" select="5">

0 commit comments

Comments
 (0)