more XER testing

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@672 59561ff5-6e30-0410-9f3c-9617f08c8826
This commit is contained in:
vlm 2005-02-18 16:29:49 +00:00
parent 86a96dae86
commit 34fdab2f35
1 changed files with 14 additions and 6 deletions

View File

@ -16,11 +16,13 @@ BEGIN
*/
PDU ::= CHOICE {
sequence Sequence,
set Set,
setOf SetOf,
seqOf SeqOf,
extensibleSet ExtensibleSet
sequence Sequence,
set Set,
setOf SetOf,
sequenceOf SequenceOf,
extensibleSet ExtensibleSet,
extensibleSequence ExtensibleSequence,
...
}
Sequence ::= SEQUENCE {
@ -40,7 +42,13 @@ BEGIN
...
}
ExtensibleSequence ::= SEQUENCE {
string UTF8String OPTIONAL,
...,
integer INTEGER OPTIONAL
}
SetOf ::= SET OF REAL
SeqOf ::= SEQUENCE OF id INTEGER
SequenceOf ::= SEQUENCE OF id INTEGER
END