1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file or at 6// https://developers.google.com/open-source/licenses/bsd 7 8edition = "2023"; 9 10package protobuf.testing.textformat.performance.proto2; 11 12option features.repeated_field_encoding = EXPANDED; 13option java_package = "com.google.protobuf.testing.textformat.performance.proto2"; 14option java_outer_classname = "Proto2TextFormatPerformanceProto"; 15 16message ContainsSubMessageWithRepeatedInt32 { 17 RepeatedInt32 sub_msg = 1; 18} 19 20message RepeatedInt32 { 21 repeated int32 value = 2; 22} 23 24message ContainsExtensionSubMessage { 25 extensions 1 to max; 26} 27 28extend ContainsExtensionSubMessage { 29 RepeatedInt32 sub_msg_ext = 1; 30} 31