コード例 #1
0
 public AProtobufPrimitiveTypeReference(ABnfElement element) : base(element)
 {
 }
コード例 #2
0
 public AProtobufMessageReference(ABnfElement element) : base(element)
 {
 }
コード例 #3
0
 public AProtobufKeyReference(ABnfElement element) : base(element)
 {
 }
コード例 #4
0
 public AProtobufRegexReference(ABnfElement element) : base(element)
 {
 }
コード例 #5
0
 public AProtobufServiceRpcReference(ABnfElement element) : base(element)
 {
 }
コード例 #6
0
        ABnfElement m_target;               // 本来要匹配的目标元素

        public ABnfErrorElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string value, ABnfElement target)
            : base(factory, file, line, col, offset)
        {
            m_value  = value;
            m_target = target;
        }