Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Side by Side Diff: client/flagpb/unmarshal_test.proto

Issue 1935923002: client/flagpb: fix repeated bool without value (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « client/flagpb/unmarshal_test.go ('k') | client/flagpb/unmarshal_test.pb_test.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 syntax = "proto3"; 1 syntax = "proto3";
2 2
3 package flagpb; 3 package flagpb;
4 4
5 enum E { 5 enum E {
6 V0 = 0; 6 V0 = 0;
7 V1 = 1; 7 V1 = 1;
8 } 8 }
9 9
10 message M1 { 10 message M1 {
11 string s = 1; 11 string s = 1;
12 int32 i = 2; 12 int32 i = 2;
13 repeated int32 ri = 3; 13 repeated int32 ri = 3;
14 bool b = 4; 14 bool b = 4;
15 repeated bool rb = 6;
15 bytes bb = 5; 16 bytes bb = 5;
16 } 17 }
17 18
18 message M2 { 19 message M2 {
19 M1 m1 = 1; 20 M1 m1 = 1;
20 E e = 2; 21 E e = 2;
21 } 22 }
22 23
23 message M3 { 24 message M3 {
24 repeated M1 m1 = 1; 25 repeated M1 m1 = 1;
25 M2 m2 = 2; 26 M2 m2 = 2;
26 bool b = 3; 27 bool b = 3;
27 string s = 4; 28 string s = 4;
28 bytes bt = 5; 29 bytes bt = 5;
29 } 30 }
OLDNEW
« no previous file with comments | « client/flagpb/unmarshal_test.go ('k') | client/flagpb/unmarshal_test.pb_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698