Github user stevedlawrence commented on a diff in the pull request:
https://github.com/apache/incubator-daffodil/pull/12#discussion_r154092356
--- Diff:
daffodil-core/src/main/scala/edu/illinois/ncsa/daffodil/grammar/TermGrammarMixin.scala
---
@@ -62,7 +61,7 @@ trait TermGrammarMixin
protected lazy val hasEncoding = optionEncodingRaw.isDefined
- protected lazy val termIOPropertiesChange = prod("ioPropertiesChange") {
bitOrderChange ~ encodingChange }
+ protected lazy val termIOPropertiesChange = prod("ioPropertiesChange") {
bitOrderChange }
--- End diff --
So removing the bitOrderChange parser is not part of this? Are there things
actually preventing this, or just something not gotten to yet.
---