blueszhangsh / protobuf-dt

Automatically exported from code.google.com/p/protobuf-dt
0 stars 0 forks source link

Type references in nested messages not found. #229

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In the following example, a reference to ProtoWithExtensions is not found.

syntax = "proto2";

message OuterProto {
  message ProtoWithExtensions {
    required string string_value = 1;
    extensions 100 to max;
  }

  message Extension {
    extend ProtoWithExtensions {
      optional Extension the_extension = 100;
    }
    required string string_value = 1;
  }
}

Original issue reported on code.google.com by alr...@google.com on 24 Oct 2012 at 8:32

GoogleCodeExporter commented 9 years ago
d22b568b3a453

Original comment by alr...@google.com on 25 Oct 2012 at 1:24

GoogleCodeExporter commented 9 years ago
r22b568b3a453

Original comment by alr...@google.com on 25 Oct 2012 at 1:26