Scoping of custom options sometime works and sometimes it doesn't.
Example:
extend proto2.MessageOptions {
optional bool active = 1003;
optional group Type6 = 1000 {
optional Number code = 1001;
optional string name = 1002;
}
}
enum Number {
ONE = 1;
}
message ABC {
option (type6).code = ONE;
}
(type6) is not always resolved
Original issue reported on code.google.com by alr...@google.com on 18 Jan 2012 at 11:05
Original issue reported on code.google.com by
alr...@google.com
on 18 Jan 2012 at 11:05