Example #1
0
 public SequenceOfValue(SequenceOfValue o, ITree antlr)
 {
     m_TypeID = Asn1Value.TypeID.SEQUENCE_OF;
     m_module = o.m_module;
     antlrNode = antlr;
     m_type = o.m_type;
     m_children = o.m_children;
 }
Example #2
0
 public override SequenceOfValue CreateSequenceOfValue(SequenceOfValue o, Antlr.Runtime.Tree.ITree antlr)
 {
     return new SCCSequenceOfValue(o, antlr);
 }
Example #3
0
 public SCCSequenceOfValue(SequenceOfValue o, ITree antlr)
     : base(o, antlr)
 {
 }