This page is no longer maintained — Please continue to the home page at www.scala-lang.org

[scala-bts] #3094: xml scope not handled when copying elements

1 reply
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.

-------------------+--------------------------------------------------------
Reporter: ittayd | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------
here's a scala session:

scala> val x1 =
x1: scala.xml.Elem =

scala> x1.child(0).namespace
res0: String = http://www.example.org/scope

scala> val c =
c: scala.xml.Elem =

scala> val x2 = x1.copy(child=c)
x2: scala.xml.Elem =

scala> x2.child(0).namespace
res1: String = null

scala> :quit

I think that if 'copy' is passed the 'child' parameter, it should use a
copy of that child where the scope is a merge of that child's scope and
it's own.

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #3094: xml scope not handled when copying elemen

-------------------+--------------------------------------------------------
Reporter: ittayd | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------+--------------------------------------------------------

Comment(by ittayd):

any updates?

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland