This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 21925 - [XSLT30] Non-streamable example
Summary: [XSLT30] Non-streamable example
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XSLT 3.0 (show other bugs)
Version: Working drafts
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Michael Kay
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-05-03 21:42 UTC by Michael Kay
Modified: 2013-08-12 10:45 UTC (History)
0 users

See Also:


Attachments

Description Michael Kay 2013-05-03 21:42:36 UTC
It seems to me that the last example under xsl:iterate (Processing the Last Item in a Sequence Specially) is not streamable because of the occurrence of

<xsl:with-param name="prev" select="."/>.
Comment 1 Michael Kay 2013-08-12 10:45:08 UTC
I have changed the example to use

       <xsl:with-param name="prev" select="copy-of(.)"/>

which solves the problem.