- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[scala-bts] #2125: Xml RuleTransformer blows up on <xml:group>
Sun, 2009-07-05, 11:52
-------------------------+--------------------------------------------------
Reporter: BenHutchison | Owner: scala-xml_team
Type: defect | Status: new
Priority: normal | Component: XML support
Keywords: |
-------------------------+--------------------------------------------------
Running the code below results in:
java.lang.UnsupportedOperationException: class Group does not support
method 'child'
object TransformBug2 {
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))
}
}
-----------------------------+----------------------------------------------
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:
Fixed in r18210.