1. 22 Sep, 2018 1 commit
    • Jon Skeet's avatar
      Provide simple access to descriptor declarations in C# · 17119990
      Jon Skeet authored
      This is primarily for access to comments, which would be expected to be available in a protoc plugin.
      
      The implementation has two fiddly aspects:
      
      - We use a Lazy<T> to avoid building the map before cross-linking. An alternative would be to crosslink at the end of the constructor, and remove the calls to CrossLink elsewhere. This would be generally better IMO, but deviate from the Java code.
      - The casts to IReadOnlyList<DescriptorBase> are unfortunate. They'll always work, because these lists are always ReadOnlyCollection<T> for a descriptor type... but we can't use IList<DescriptorBase> as that's not covariant, and it's annoyingly fiddly to change the field to be of type ReadOnlyCollection<T>.
      17119990
  2. 17 Sep, 2018 1 commit
  3. 10 Sep, 2018 5 commits
  4. 08 Sep, 2018 1 commit
  5. 07 Sep, 2018 11 commits
  6. 06 Sep, 2018 2 commits
  7. 04 Sep, 2018 2 commits
  8. 03 Sep, 2018 3 commits
  9. 02 Sep, 2018 2 commits
  10. 01 Sep, 2018 1 commit
  11. 31 Aug, 2018 2 commits
  12. 30 Aug, 2018 3 commits
  13. 29 Aug, 2018 4 commits
  14. 28 Aug, 2018 2 commits