Github user mbeckerle commented on a diff in the pull request:
https://github.com/apache/incubator-daffodil/pull/5#discussion_r150873946
--- Diff:
daffodil-runtime1/src/main/scala/edu/illinois/ncsa/daffodil/infoset/InfosetImpl.scala
---
@@ -213,7 +213,7 @@ case class
InfosetValueLengthUnknownException(lengthState: LengthState, override
final class FakeDINode extends DISimple(null) {
private def die = throw new InfosetNoInfosetException(Nope)
- override def parent = die
+ override val parent = die
--- End diff --
That is the only explanation. I've fixed the val by changing to def anyway.
---