Skip to content

2.0.6

Compare
Choose a tag to compare
@marcus-pousette marcus-pousette released this 15 Jun 14:09
· 130 commits to master since this release
  • Throw error if conflicting variants e.g.
class Base {}

@variant(0)
class A extends Base {}

@variant(0)
class B extends Base {}

now throws error as we can not deterministically deserialise Base into either A or B.