mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-09 12:46:46 +00:00
3d8e369c4e
This implements generation of and reflection support for weak fields. Weak fields are a proto1 feature where the "weak" option can be specified on a singular message field. A weak reference results in generated code that does not directly link in the dependency containing the weak message. Weak field support is not added to any of the serialization logic. Change-Id: I08ccfa72bc80b2ffb6af527a1677a0a81dcf33fb Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/185399 Reviewed-by: Damien Neil <dneil@google.com>
14 lines
350 B
Protocol Buffer
14 lines
350 B
Protocol Buffer
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
syntax = "proto2";
|
|
|
|
package goproto.proto.test.weak;
|
|
|
|
option go_package = "google.golang.org/protobuf/internal/testprotos/test/weak1";
|
|
|
|
message WeakImportMessage1 {
|
|
optional int32 a = 1;
|
|
}
|