File tree 2 files changed +2
-17
lines changed
2 files changed +2
-17
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 : import href =" sat.xsl" />
7
-
8
- <xsl : template match =" pattern" mode =" #default" >
9
- <xsl : call-template name =" tp1h" >
10
- <xsl : with-param name =" p1" as =" element()" select =" a" />
11
- <xsl : with-param name =" p2" as =" element()" select =" b" />
12
- </xsl : call-template >
13
-
14
- </xsl : template >
15
-
16
- <xsl : template name =" tp1h" >
17
- <xsl : param name =" p1" as =" node()" />
18
- <xsl : param name =" p2" as =" node()" />
19
-
20
- </xsl : template >
21
-
6
+ <xsl : variable name =" test" select =" @*:att" />
22
7
23
8
</xsl : stylesheet >
Original file line number Diff line number Diff line change @@ -1336,7 +1336,7 @@ export class XsltTokenDiagnostics {
1336
1336
skipValidation = token . value === '@xml' ;
1337
1337
if ( ! skipValidation && token . value === '@' ) {
1338
1338
let nextToken = allTokens . length > index + 1 ? allTokens [ index + 1 ] : null ;
1339
- skipValidation = nextToken ? token . value === '@' && nextToken . value === '*' : false ;
1339
+ skipValidation = nextToken ? token . value === '@' && ( nextToken . value === '*' || nextToken . value === '*:' ) : false ;
1340
1340
}
1341
1341
}
1342
1342
if ( ! skipValidation ) {
You can’t perform that action at this time.
0 commit comments