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 29186 - The StringConstructorInterpolation expression should be atomized and converted to a space separated string
Summary: The StringConstructorInterpolation expression should be atomized and converte...
Status: RESOLVED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XQuery 3.1 (show other bugs)
Version: Proposed Edited Recommendation
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Jonathan Robie
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-08 14:52 UTC by Josh Spiegel
Modified: 2015-10-20 16:12 UTC (History)
0 users

See Also:


Attachments

Description Josh Spiegel 2015-10-08 14:52:48 UTC
See:
https://lists.w3.org/Archives/Public/public-xsl-query/2015Oct/0021.html
https://lists.w3.org/Archives/Public/public-xsl-query/2015Oct/0034.html

In section 3.10 String Constructors:

  string-join($i ! string(.))

would become:

  ($i ! (. cast as xs:string)) => string-join(' ')

Or, depending on bug 29184, simply:
  
  string-join($i, ' ')
Comment 1 Jonathan Robie 2015-10-08 21:43:52 UTC
As an optimist, I just changed this to string-join($i, ' ').

As a realist, I'm leaving the bug open until the next meeting so we can resolve these two bugs together.
Comment 2 Jonathan Robie 2015-10-20 16:12:23 UTC
We adopted the resolution from Comment #1