File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 3
3
xmlns : fn =" abc"
4
4
version =" 3.0" >
5
5
6
- <!-- <xsl:include href="included1.xsl"/>
7
- <xsl:import href="features/included2.xsl"/> -->
6
+ <xsl : include href =" included1.xsl" />
7
+ <xsl : import href =" features/included2.xsl" />
8
8
9
9
<xsl : template name =" tp1" >
10
10
<xsl : param name =" p1" as =" element()" select =" a" />
11
- <xsl : param name =" p2" as =" element()" select =" b" />
11
+ <xsl : param name =" p2" as =" element()" select =" b" />
12
+ <xsl : sequence select =" fn:name(1,2)" />
13
+
12
14
</xsl : template >
13
-
15
+
14
16
<xsl : template match =" /" >
15
17
<xsl : param name =" mp1" as =" element()" select =" a" />
16
18
<xsl : param name =" mp2" as =" element()" select =" b" />
Original file line number Diff line number Diff line change @@ -739,6 +739,7 @@ export class XslLexer {
739
739
} else if ( tagGlobalInstructionType == GlobalInstructionType . Template && attName === 'match' ) {
740
740
isExpandTextAttribute = false ;
741
741
isGlobalInstructionMatch = true ;
742
+ isXPathAttribute = true ;
742
743
} else if ( collectParamName && attName === 'name' ) {
743
744
isGlobalParameterName = true ;
744
745
} else {
You can’t perform that action at this time.
0 commit comments