mouse07410 / asn1c

The ASN.1 Compiler
http://lionet.info/asn1c/
BSD 2-Clause "Simplified" License
94 stars 70 forks source link

fix JER SET OF invalid output #110

Closed mtfurlan closed 1 year ago

mtfurlan commented 1 year ago

JER set of has invalid output right now.

$ cat test.asn 
Module DEFINITIONS::=BEGIN T::=SET OF INTEGER END

$ cat thing.xml 
<?xml version="1.0" encoding="UTF-8"?>
<T>
  <INTEGER>10</INTEGER>
  <INTEGER>12</INTEGER>
  <INTEGER>-2</INTEGER>
  <INTEGER>8</INTEGER>
</T>

$ ./converter-example -ixer thing.xml -p T -ojer > out.json
$ cat out.json
{
"T":
    "INTEGER"10
    "INTEGER"12
    "INTEGER"-2
    "INTEGER"8
}