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

[scala-bts] #2124: Xml RuleTransformer incorrectly transforms simple XML fragment

2 replies
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
-------------------------+-------------------------------------------------- Reporter: BenHutchison | Owner: scala-xml_team Type: defect | Status: new Priority: normal | Component: XML support Keywords: | -------------------------+-------------------------------------------------- Expected:

Actual:

Test Code: import scala.xml._ import scala.xml.transform._ object TransformBug { val sampleXml =

def main(args: scala.Array[String]) { println(new RuleTransformer(new RewriteRule { override def transform(n: Node): NodeSeq = { val result = n match { case {_*} => case n => n } // println ("Rewriting '" +n+ "' to: '" + result+ "'") result } }).transform(sampleXml)) } }
Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #2124: Xml RuleTransformer incorrectly transform

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

Comment(by BenHutchison):

A debugging session suggests that the problem happens on line 95 of
BasicTranformer:

nb ++= (n2:Iterable[xml.Node])

'nb' includes the element beforehand, but loses it after.

Scala 2
Joined: 2009-03-05,
User offline. Last seen 42 years 45 weeks ago.
Re: [scala-bts] #2124: Xml RuleTransformer incorrectly transform

-----------------------------+----------------------------------------------
Reporter: BenHutchison | Owner: scala-xml_team
Type: defect | Status: closed
Priority: normal | Component: XML support
Version: Unreleased-2.8.x | Resolution: fixed
Keywords: |
-----------------------------+----------------------------------------------
Changes (by extempore):

* cc: paulp@… (added)
* status: new => closed
* version: => Unreleased-2.8.x
* resolution: => fixed

Comment:

In another fine indictment of index-based iteration...
{{{
/** Returns a new node buffer with the first pos elements
* from ns.
...
var j = 0; while (j < pos-1) {
}}}
Fixed in r18210.

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