All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.backend.common.serialization.proto.IrClass Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: compiler/ir/serialization.common/src/KotlinIr.proto

package org.jetbrains.kotlin.backend.common.serialization.proto;

/**
 * Protobuf type {@code org.jetbrains.kotlin.backend.common.serialization.proto.IrClass}
 */
public final class IrClass extends
    org.jetbrains.kotlin.protobuf.GeneratedMessageLite implements
    // @@protoc_insertion_point(message_implements:org.jetbrains.kotlin.backend.common.serialization.proto.IrClass)
    IrClassOrBuilder {
  // Use IrClass.newBuilder() to construct.
  private IrClass(org.jetbrains.kotlin.protobuf.GeneratedMessageLite.Builder builder) {
    super(builder);
    this.unknownFields = builder.getUnknownFields();
  }
  private IrClass(boolean noInit) { this.unknownFields = org.jetbrains.kotlin.protobuf.ByteString.EMPTY;}

  private static final IrClass defaultInstance;
  public static IrClass getDefaultInstance() {
    return defaultInstance;
  }

  public IrClass getDefaultInstanceForType() {
    return defaultInstance;
  }

  private final org.jetbrains.kotlin.protobuf.ByteString unknownFields;
  private IrClass(
      org.jetbrains.kotlin.protobuf.CodedInputStream input,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
    initFields();
    int mutable_bitField0_ = 0;
    org.jetbrains.kotlin.protobuf.ByteString.Output unknownFieldsOutput =
        org.jetbrains.kotlin.protobuf.ByteString.newOutput();
    org.jetbrains.kotlin.protobuf.CodedOutputStream unknownFieldsCodedOutput =
        org.jetbrains.kotlin.protobuf.CodedOutputStream.newInstance(
            unknownFieldsOutput, 1);
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          default: {
            if (!parseUnknownField(input, unknownFieldsCodedOutput,
                                   extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
          case 10: {
            org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.Builder subBuilder = null;
            if (((bitField0_ & 0x00000001) == 0x00000001)) {
              subBuilder = base_.toBuilder();
            }
            base_ = input.readMessage(org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.PARSER, extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(base_);
              base_ = subBuilder.buildPartial();
            }
            bitField0_ |= 0x00000001;
            break;
          }
          case 16: {
            bitField0_ |= 0x00000002;
            name_ = input.readInt32();
            break;
          }
          case 26: {
            org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.Builder subBuilder = null;
            if (((bitField0_ & 0x00000004) == 0x00000004)) {
              subBuilder = thisReceiver_.toBuilder();
            }
            thisReceiver_ = input.readMessage(org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.PARSER, extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(thisReceiver_);
              thisReceiver_ = subBuilder.buildPartial();
            }
            bitField0_ |= 0x00000004;
            break;
          }
          case 34: {
            if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
              typeParameter_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000008;
            }
            typeParameter_.add(input.readMessage(org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter.PARSER, extensionRegistry));
            break;
          }
          case 42: {
            if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
              declaration_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000010;
            }
            declaration_.add(input.readMessage(org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration.PARSER, extensionRegistry));
            break;
          }
          case 48: {
            if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
              superType_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000020;
            }
            superType_.add(input.readInt32());
            break;
          }
          case 50: {
            int length = input.readRawVarint32();
            int limit = input.pushLimit(length);
            if (!((mutable_bitField0_ & 0x00000020) == 0x00000020) && input.getBytesUntilLimit() > 0) {
              superType_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000020;
            }
            while (input.getBytesUntilLimit() > 0) {
              superType_.add(input.readInt32());
            }
            input.popLimit(limit);
            break;
          }
        }
      }
    } catch (org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException(
          e.getMessage()).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
        typeParameter_ = java.util.Collections.unmodifiableList(typeParameter_);
      }
      if (((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
        declaration_ = java.util.Collections.unmodifiableList(declaration_);
      }
      if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
        superType_ = java.util.Collections.unmodifiableList(superType_);
      }
      try {
        unknownFieldsCodedOutput.flush();
      } catch (java.io.IOException e) {
      // Should not happen
      } finally {
        unknownFields = unknownFieldsOutput.toByteString();
      }
      makeExtensionsImmutable();
    }
  }
  public static org.jetbrains.kotlin.protobuf.Parser PARSER =
      new org.jetbrains.kotlin.protobuf.AbstractParser() {
    public IrClass parsePartialFrom(
        org.jetbrains.kotlin.protobuf.CodedInputStream input,
        org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
        throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
      return new IrClass(input, extensionRegistry);
    }
  };

  @java.lang.Override
  public org.jetbrains.kotlin.protobuf.Parser getParserForType() {
    return PARSER;
  }

  private int bitField0_;
  public static final int BASE_FIELD_NUMBER = 1;
  private org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base_;
  /**
   * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
   */
  public boolean hasBase() {
    return ((bitField0_ & 0x00000001) == 0x00000001);
  }
  /**
   * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase getBase() {
    return base_;
  }

  public static final int NAME_FIELD_NUMBER = 2;
  private int name_;
  /**
   * required int32 name = 2;
   */
  public boolean hasName() {
    return ((bitField0_ & 0x00000002) == 0x00000002);
  }
  /**
   * required int32 name = 2;
   */
  public int getName() {
    return name_;
  }

  public static final int THIS_RECEIVER_FIELD_NUMBER = 3;
  private org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter thisReceiver_;
  /**
   * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
   */
  public boolean hasThisReceiver() {
    return ((bitField0_ & 0x00000004) == 0x00000004);
  }
  /**
   * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter getThisReceiver() {
    return thisReceiver_;
  }

  public static final int TYPE_PARAMETER_FIELD_NUMBER = 4;
  private java.util.List typeParameter_;
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
   */
  public java.util.List getTypeParameterList() {
    return typeParameter_;
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
   */
  public java.util.List 
      getTypeParameterOrBuilderList() {
    return typeParameter_;
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
   */
  public int getTypeParameterCount() {
    return typeParameter_.size();
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter getTypeParameter(int index) {
    return typeParameter_.get(index);
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameterOrBuilder getTypeParameterOrBuilder(
      int index) {
    return typeParameter_.get(index);
  }

  public static final int DECLARATION_FIELD_NUMBER = 5;
  private java.util.List declaration_;
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
   */
  public java.util.List getDeclarationList() {
    return declaration_;
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
   */
  public java.util.List 
      getDeclarationOrBuilderList() {
    return declaration_;
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
   */
  public int getDeclarationCount() {
    return declaration_.size();
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration getDeclaration(int index) {
    return declaration_.get(index);
  }
  /**
   * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
   */
  public org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationOrBuilder getDeclarationOrBuilder(
      int index) {
    return declaration_.get(index);
  }

  public static final int SUPER_TYPE_FIELD_NUMBER = 6;
  private java.util.List superType_;
  /**
   * repeated int32 super_type = 6 [packed = true];
   */
  public java.util.List
      getSuperTypeList() {
    return superType_;
  }
  /**
   * repeated int32 super_type = 6 [packed = true];
   */
  public int getSuperTypeCount() {
    return superType_.size();
  }
  /**
   * repeated int32 super_type = 6 [packed = true];
   */
  public int getSuperType(int index) {
    return superType_.get(index);
  }
  private int superTypeMemoizedSerializedSize = -1;

  private void initFields() {
    base_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.getDefaultInstance();
    name_ = 0;
    thisReceiver_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.getDefaultInstance();
    typeParameter_ = java.util.Collections.emptyList();
    declaration_ = java.util.Collections.emptyList();
    superType_ = java.util.Collections.emptyList();
  }
  private byte memoizedIsInitialized = -1;
  public final boolean isInitialized() {
    byte isInitialized = memoizedIsInitialized;
    if (isInitialized == 1) return true;
    if (isInitialized == 0) return false;

    if (!hasBase()) {
      memoizedIsInitialized = 0;
      return false;
    }
    if (!hasName()) {
      memoizedIsInitialized = 0;
      return false;
    }
    if (!getBase().isInitialized()) {
      memoizedIsInitialized = 0;
      return false;
    }
    if (hasThisReceiver()) {
      if (!getThisReceiver().isInitialized()) {
        memoizedIsInitialized = 0;
        return false;
      }
    }
    for (int i = 0; i < getTypeParameterCount(); i++) {
      if (!getTypeParameter(i).isInitialized()) {
        memoizedIsInitialized = 0;
        return false;
      }
    }
    for (int i = 0; i < getDeclarationCount(); i++) {
      if (!getDeclaration(i).isInitialized()) {
        memoizedIsInitialized = 0;
        return false;
      }
    }
    memoizedIsInitialized = 1;
    return true;
  }

  public void writeTo(org.jetbrains.kotlin.protobuf.CodedOutputStream output)
                      throws java.io.IOException {
    getSerializedSize();
    if (((bitField0_ & 0x00000001) == 0x00000001)) {
      output.writeMessage(1, base_);
    }
    if (((bitField0_ & 0x00000002) == 0x00000002)) {
      output.writeInt32(2, name_);
    }
    if (((bitField0_ & 0x00000004) == 0x00000004)) {
      output.writeMessage(3, thisReceiver_);
    }
    for (int i = 0; i < typeParameter_.size(); i++) {
      output.writeMessage(4, typeParameter_.get(i));
    }
    for (int i = 0; i < declaration_.size(); i++) {
      output.writeMessage(5, declaration_.get(i));
    }
    if (getSuperTypeList().size() > 0) {
      output.writeRawVarint32(50);
      output.writeRawVarint32(superTypeMemoizedSerializedSize);
    }
    for (int i = 0; i < superType_.size(); i++) {
      output.writeInt32NoTag(superType_.get(i));
    }
    output.writeRawBytes(unknownFields);
  }

  private int memoizedSerializedSize = -1;
  public int getSerializedSize() {
    int size = memoizedSerializedSize;
    if (size != -1) return size;

    size = 0;
    if (((bitField0_ & 0x00000001) == 0x00000001)) {
      size += org.jetbrains.kotlin.protobuf.CodedOutputStream
        .computeMessageSize(1, base_);
    }
    if (((bitField0_ & 0x00000002) == 0x00000002)) {
      size += org.jetbrains.kotlin.protobuf.CodedOutputStream
        .computeInt32Size(2, name_);
    }
    if (((bitField0_ & 0x00000004) == 0x00000004)) {
      size += org.jetbrains.kotlin.protobuf.CodedOutputStream
        .computeMessageSize(3, thisReceiver_);
    }
    for (int i = 0; i < typeParameter_.size(); i++) {
      size += org.jetbrains.kotlin.protobuf.CodedOutputStream
        .computeMessageSize(4, typeParameter_.get(i));
    }
    for (int i = 0; i < declaration_.size(); i++) {
      size += org.jetbrains.kotlin.protobuf.CodedOutputStream
        .computeMessageSize(5, declaration_.get(i));
    }
    {
      int dataSize = 0;
      for (int i = 0; i < superType_.size(); i++) {
        dataSize += org.jetbrains.kotlin.protobuf.CodedOutputStream
          .computeInt32SizeNoTag(superType_.get(i));
      }
      size += dataSize;
      if (!getSuperTypeList().isEmpty()) {
        size += 1;
        size += org.jetbrains.kotlin.protobuf.CodedOutputStream
            .computeInt32SizeNoTag(dataSize);
      }
      superTypeMemoizedSerializedSize = dataSize;
    }
    size += unknownFields.size();
    memoizedSerializedSize = size;
    return size;
  }

  private static final long serialVersionUID = 0L;
  @java.lang.Override
  protected java.lang.Object writeReplace()
      throws java.io.ObjectStreamException {
    return super.writeReplace();
  }

  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      org.jetbrains.kotlin.protobuf.ByteString data)
      throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      org.jetbrains.kotlin.protobuf.ByteString data,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(byte[] data)
      throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      byte[] data,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return PARSER.parseFrom(input);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      java.io.InputStream input,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return PARSER.parseFrom(input, extensionRegistry);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return PARSER.parseDelimitedFrom(input);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseDelimitedFrom(
      java.io.InputStream input,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return PARSER.parseDelimitedFrom(input, extensionRegistry);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      org.jetbrains.kotlin.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return PARSER.parseFrom(input);
  }
  public static org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parseFrom(
      org.jetbrains.kotlin.protobuf.CodedInputStream input,
      org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return PARSER.parseFrom(input, extensionRegistry);
  }

  public static Builder newBuilder() { return Builder.create(); }
  public Builder newBuilderForType() { return newBuilder(); }
  public static Builder newBuilder(org.jetbrains.kotlin.backend.common.serialization.proto.IrClass prototype) {
    return newBuilder().mergeFrom(prototype);
  }
  public Builder toBuilder() { return newBuilder(this); }

  /**
   * Protobuf type {@code org.jetbrains.kotlin.backend.common.serialization.proto.IrClass}
   */
  public static final class Builder extends
      org.jetbrains.kotlin.protobuf.GeneratedMessageLite.Builder<
        org.jetbrains.kotlin.backend.common.serialization.proto.IrClass, Builder>
      implements
      // @@protoc_insertion_point(builder_implements:org.jetbrains.kotlin.backend.common.serialization.proto.IrClass)
      org.jetbrains.kotlin.backend.common.serialization.proto.IrClassOrBuilder {
    // Construct using org.jetbrains.kotlin.backend.common.serialization.proto.IrClass.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private void maybeForceBuilderInitialization() {
    }
    private static Builder create() {
      return new Builder();
    }

    public Builder clear() {
      super.clear();
      base_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.getDefaultInstance();
      bitField0_ = (bitField0_ & ~0x00000001);
      name_ = 0;
      bitField0_ = (bitField0_ & ~0x00000002);
      thisReceiver_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.getDefaultInstance();
      bitField0_ = (bitField0_ & ~0x00000004);
      typeParameter_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000008);
      declaration_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000010);
      superType_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000020);
      return this;
    }

    public Builder clone() {
      return create().mergeFrom(buildPartial());
    }

    public org.jetbrains.kotlin.backend.common.serialization.proto.IrClass getDefaultInstanceForType() {
      return org.jetbrains.kotlin.backend.common.serialization.proto.IrClass.getDefaultInstance();
    }

    public org.jetbrains.kotlin.backend.common.serialization.proto.IrClass build() {
      org.jetbrains.kotlin.backend.common.serialization.proto.IrClass result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    public org.jetbrains.kotlin.backend.common.serialization.proto.IrClass buildPartial() {
      org.jetbrains.kotlin.backend.common.serialization.proto.IrClass result = new org.jetbrains.kotlin.backend.common.serialization.proto.IrClass(this);
      int from_bitField0_ = bitField0_;
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
        to_bitField0_ |= 0x00000001;
      }
      result.base_ = base_;
      if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
        to_bitField0_ |= 0x00000002;
      }
      result.name_ = name_;
      if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
        to_bitField0_ |= 0x00000004;
      }
      result.thisReceiver_ = thisReceiver_;
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        typeParameter_ = java.util.Collections.unmodifiableList(typeParameter_);
        bitField0_ = (bitField0_ & ~0x00000008);
      }
      result.typeParameter_ = typeParameter_;
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        declaration_ = java.util.Collections.unmodifiableList(declaration_);
        bitField0_ = (bitField0_ & ~0x00000010);
      }
      result.declaration_ = declaration_;
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        superType_ = java.util.Collections.unmodifiableList(superType_);
        bitField0_ = (bitField0_ & ~0x00000020);
      }
      result.superType_ = superType_;
      result.bitField0_ = to_bitField0_;
      return result;
    }

    public Builder mergeFrom(org.jetbrains.kotlin.backend.common.serialization.proto.IrClass other) {
      if (other == org.jetbrains.kotlin.backend.common.serialization.proto.IrClass.getDefaultInstance()) return this;
      if (other.hasBase()) {
        mergeBase(other.getBase());
      }
      if (other.hasName()) {
        setName(other.getName());
      }
      if (other.hasThisReceiver()) {
        mergeThisReceiver(other.getThisReceiver());
      }
      if (!other.typeParameter_.isEmpty()) {
        if (typeParameter_.isEmpty()) {
          typeParameter_ = other.typeParameter_;
          bitField0_ = (bitField0_ & ~0x00000008);
        } else {
          ensureTypeParameterIsMutable();
          typeParameter_.addAll(other.typeParameter_);
        }
        
      }
      if (!other.declaration_.isEmpty()) {
        if (declaration_.isEmpty()) {
          declaration_ = other.declaration_;
          bitField0_ = (bitField0_ & ~0x00000010);
        } else {
          ensureDeclarationIsMutable();
          declaration_.addAll(other.declaration_);
        }
        
      }
      if (!other.superType_.isEmpty()) {
        if (superType_.isEmpty()) {
          superType_ = other.superType_;
          bitField0_ = (bitField0_ & ~0x00000020);
        } else {
          ensureSuperTypeIsMutable();
          superType_.addAll(other.superType_);
        }
        
      }
      setUnknownFields(
          getUnknownFields().concat(other.unknownFields));
      return this;
    }

    public final boolean isInitialized() {
      if (!hasBase()) {
        
        return false;
      }
      if (!hasName()) {
        
        return false;
      }
      if (!getBase().isInitialized()) {
        
        return false;
      }
      if (hasThisReceiver()) {
        if (!getThisReceiver().isInitialized()) {
          
          return false;
        }
      }
      for (int i = 0; i < getTypeParameterCount(); i++) {
        if (!getTypeParameter(i).isInitialized()) {
          
          return false;
        }
      }
      for (int i = 0; i < getDeclarationCount(); i++) {
        if (!getDeclaration(i).isInitialized()) {
          
          return false;
        }
      }
      return true;
    }

    public Builder mergeFrom(
        org.jetbrains.kotlin.protobuf.CodedInputStream input,
        org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      org.jetbrains.kotlin.backend.common.serialization.proto.IrClass parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (org.jetbrains.kotlin.backend.common.serialization.proto.IrClass) e.getUnfinishedMessage();
        throw e;
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.getDefaultInstance();
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public boolean hasBase() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase getBase() {
      return base_;
    }
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public Builder setBase(org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase value) {
      if (value == null) {
        throw new NullPointerException();
      }
      base_ = value;

      bitField0_ |= 0x00000001;
      return this;
    }
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public Builder setBase(
        org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.Builder builderForValue) {
      base_ = builderForValue.build();

      bitField0_ |= 0x00000001;
      return this;
    }
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public Builder mergeBase(org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase value) {
      if (((bitField0_ & 0x00000001) == 0x00000001) &&
          base_ != org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.getDefaultInstance()) {
        base_ =
          org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.newBuilder(base_).mergeFrom(value).buildPartial();
      } else {
        base_ = value;
      }

      bitField0_ |= 0x00000001;
      return this;
    }
    /**
     * required .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase base = 1;
     */
    public Builder clearBase() {
      base_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclarationBase.getDefaultInstance();

      bitField0_ = (bitField0_ & ~0x00000001);
      return this;
    }

    private int name_ ;
    /**
     * required int32 name = 2;
     */
    public boolean hasName() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * required int32 name = 2;
     */
    public int getName() {
      return name_;
    }
    /**
     * required int32 name = 2;
     */
    public Builder setName(int value) {
      bitField0_ |= 0x00000002;
      name_ = value;
      
      return this;
    }
    /**
     * required int32 name = 2;
     */
    public Builder clearName() {
      bitField0_ = (bitField0_ & ~0x00000002);
      name_ = 0;
      
      return this;
    }

    private org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter thisReceiver_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.getDefaultInstance();
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public boolean hasThisReceiver() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter getThisReceiver() {
      return thisReceiver_;
    }
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public Builder setThisReceiver(org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter value) {
      if (value == null) {
        throw new NullPointerException();
      }
      thisReceiver_ = value;

      bitField0_ |= 0x00000004;
      return this;
    }
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public Builder setThisReceiver(
        org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.Builder builderForValue) {
      thisReceiver_ = builderForValue.build();

      bitField0_ |= 0x00000004;
      return this;
    }
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public Builder mergeThisReceiver(org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter value) {
      if (((bitField0_ & 0x00000004) == 0x00000004) &&
          thisReceiver_ != org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.getDefaultInstance()) {
        thisReceiver_ =
          org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.newBuilder(thisReceiver_).mergeFrom(value).buildPartial();
      } else {
        thisReceiver_ = value;
      }

      bitField0_ |= 0x00000004;
      return this;
    }
    /**
     * optional .org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter this_receiver = 3;
     */
    public Builder clearThisReceiver() {
      thisReceiver_ = org.jetbrains.kotlin.backend.common.serialization.proto.IrValueParameter.getDefaultInstance();

      bitField0_ = (bitField0_ & ~0x00000004);
      return this;
    }

    private java.util.List typeParameter_ =
      java.util.Collections.emptyList();
    private void ensureTypeParameterIsMutable() {
      if (!((bitField0_ & 0x00000008) == 0x00000008)) {
        typeParameter_ = new java.util.ArrayList(typeParameter_);
        bitField0_ |= 0x00000008;
       }
    }

    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public java.util.List getTypeParameterList() {
      return java.util.Collections.unmodifiableList(typeParameter_);
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public int getTypeParameterCount() {
      return typeParameter_.size();
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter getTypeParameter(int index) {
      return typeParameter_.get(index);
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder setTypeParameter(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureTypeParameterIsMutable();
      typeParameter_.set(index, value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder setTypeParameter(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter.Builder builderForValue) {
      ensureTypeParameterIsMutable();
      typeParameter_.set(index, builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder addTypeParameter(org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureTypeParameterIsMutable();
      typeParameter_.add(value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder addTypeParameter(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureTypeParameterIsMutable();
      typeParameter_.add(index, value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder addTypeParameter(
        org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter.Builder builderForValue) {
      ensureTypeParameterIsMutable();
      typeParameter_.add(builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder addTypeParameter(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter.Builder builderForValue) {
      ensureTypeParameterIsMutable();
      typeParameter_.add(index, builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder addAllTypeParameter(
        java.lang.Iterable values) {
      ensureTypeParameterIsMutable();
      org.jetbrains.kotlin.protobuf.AbstractMessageLite.Builder.addAll(
          values, typeParameter_);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder clearTypeParameter() {
      typeParameter_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000008);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrTypeParameter type_parameter = 4;
     */
    public Builder removeTypeParameter(int index) {
      ensureTypeParameterIsMutable();
      typeParameter_.remove(index);

      return this;
    }

    private java.util.List declaration_ =
      java.util.Collections.emptyList();
    private void ensureDeclarationIsMutable() {
      if (!((bitField0_ & 0x00000010) == 0x00000010)) {
        declaration_ = new java.util.ArrayList(declaration_);
        bitField0_ |= 0x00000010;
       }
    }

    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public java.util.List getDeclarationList() {
      return java.util.Collections.unmodifiableList(declaration_);
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public int getDeclarationCount() {
      return declaration_.size();
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration getDeclaration(int index) {
      return declaration_.get(index);
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder setDeclaration(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureDeclarationIsMutable();
      declaration_.set(index, value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder setDeclaration(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration.Builder builderForValue) {
      ensureDeclarationIsMutable();
      declaration_.set(index, builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder addDeclaration(org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureDeclarationIsMutable();
      declaration_.add(value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder addDeclaration(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration value) {
      if (value == null) {
        throw new NullPointerException();
      }
      ensureDeclarationIsMutable();
      declaration_.add(index, value);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder addDeclaration(
        org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration.Builder builderForValue) {
      ensureDeclarationIsMutable();
      declaration_.add(builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder addDeclaration(
        int index, org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration.Builder builderForValue) {
      ensureDeclarationIsMutable();
      declaration_.add(index, builderForValue.build());

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder addAllDeclaration(
        java.lang.Iterable values) {
      ensureDeclarationIsMutable();
      org.jetbrains.kotlin.protobuf.AbstractMessageLite.Builder.addAll(
          values, declaration_);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder clearDeclaration() {
      declaration_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000010);

      return this;
    }
    /**
     * repeated .org.jetbrains.kotlin.backend.common.serialization.proto.IrDeclaration declaration = 5;
     */
    public Builder removeDeclaration(int index) {
      ensureDeclarationIsMutable();
      declaration_.remove(index);

      return this;
    }

    private java.util.List superType_ = java.util.Collections.emptyList();
    private void ensureSuperTypeIsMutable() {
      if (!((bitField0_ & 0x00000020) == 0x00000020)) {
        superType_ = new java.util.ArrayList(superType_);
        bitField0_ |= 0x00000020;
       }
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public java.util.List
        getSuperTypeList() {
      return java.util.Collections.unmodifiableList(superType_);
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public int getSuperTypeCount() {
      return superType_.size();
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public int getSuperType(int index) {
      return superType_.get(index);
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public Builder setSuperType(
        int index, int value) {
      ensureSuperTypeIsMutable();
      superType_.set(index, value);
      
      return this;
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public Builder addSuperType(int value) {
      ensureSuperTypeIsMutable();
      superType_.add(value);
      
      return this;
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public Builder addAllSuperType(
        java.lang.Iterable values) {
      ensureSuperTypeIsMutable();
      org.jetbrains.kotlin.protobuf.AbstractMessageLite.Builder.addAll(
          values, superType_);
      
      return this;
    }
    /**
     * repeated int32 super_type = 6 [packed = true];
     */
    public Builder clearSuperType() {
      superType_ = java.util.Collections.emptyList();
      bitField0_ = (bitField0_ & ~0x00000020);
      
      return this;
    }

    // @@protoc_insertion_point(builder_scope:org.jetbrains.kotlin.backend.common.serialization.proto.IrClass)
  }

  static {
    defaultInstance = new IrClass(true);
    defaultInstance.initFields();
  }

  // @@protoc_insertion_point(class_scope:org.jetbrains.kotlin.backend.common.serialization.proto.IrClass)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy