mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-04-16 08:42:29 +00:00
compiler/protogen: rename shadowed path package variables
The use of the variable name "path" shadows the "path" package import. Rename the variable to avoid shadowing. Change-Id: Iefcd49146753b52cca1ced1d0758699092cbdeb8 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/178778 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
This commit is contained in:
parent
44b9a3083f
commit
ea2076d064
@ -477,10 +477,10 @@ func newFile(gen *Plugin, p *descriptorpb.FileDescriptorProto, packageName GoPac
|
|||||||
return f, nil
|
return f, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) location(path ...int32) Location {
|
func (f *File) location(idxPath ...int32) Location {
|
||||||
return Location{
|
return Location{
|
||||||
SourceFile: f.Desc.Path(),
|
SourceFile: f.Desc.Path(),
|
||||||
Path: path,
|
Path: idxPath,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1155,9 +1155,9 @@ type pathKey struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// newPathKey converts a location path to a pathKey.
|
// newPathKey converts a location path to a pathKey.
|
||||||
func newPathKey(path []int32) pathKey {
|
func newPathKey(idxPath []int32) pathKey {
|
||||||
buf := make([]byte, 4*len(path))
|
buf := make([]byte, 4*len(idxPath))
|
||||||
for i, x := range path {
|
for i, x := range idxPath {
|
||||||
binary.LittleEndian.PutUint32(buf[i*4:], uint32(x))
|
binary.LittleEndian.PutUint32(buf[i*4:], uint32(x))
|
||||||
}
|
}
|
||||||
return pathKey{string(buf)}
|
return pathKey{string(buf)}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user