public AProtobufMessageVarModifierElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }
 public AProtobufOptionValueElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }
Ejemplo n.º 3
0
 public AProtobufPrimitiveTypeElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }
Ejemplo n.º 4
0
 public ABnfLeafElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string value)
     : base(factory, file, line, col, offset)
 {
     m_value = value;
 }
Ejemplo n.º 5
0
 public ABnfKeyElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string value)
     : base(factory, file, line, col, offset, value)
 {
 }
 public ALittleScriptProjectInfo(ABnfFactory factory, ABnf abnf, string path)
     : base(factory, abnf, path)
 {
 }
 public AProtobufServiceRpcReqElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }
 public AProtobufEnumVarNameElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }
Ejemplo n.º 9
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;
        }
 public AProtobufBlockCommentElement(ABnfFactory factory, ABnfFile file, int line, int col, int offset, string type)
     : base(factory, file, line, col, offset, type)
 {
 }