1. 12 10月, 2018 1 次提交
  2. 27 9月, 2018 3 次提交
  3. 26 9月, 2018 2 次提交
  4. 20 9月, 2018 4 次提交
    • Q
      shuffle ownership of `external_traits` · 354507e6
      QuietMisdreavus 提交于
      constraints:
      
      - clean/inline.rs needs this map to fill in traits when inlining
      - fold.rs needs this map to allow passes to fold trait items
      - html/render.rs needs this map to seed the Cache.traits map of all
        known traits
      
      The first two are the real problem, since `DocFolder` only operates on
      `clean::Crate` but `clean/inline.rs` only sees the `DocContext`. The
      introduction of early passes means that these two now exist at the same
      time, so they need to share ownership of the map. Even better, the use
      of `Crate` in a rustc thread pool means that it needs to be Sync, so it
      can't use `Lrc<Lock>` to manually activate thread-safety.
      
      `parking_lot` is reused from elsewhere in the tree to allow use of its
      `ReentrantMutex`, as the relevant parts of rustdoc are still
      single-threaded and this allows for easier use in that context.
      354507e6
    • Q
      refactor: move `access_levels` into RenderInfo · c754e824
      QuietMisdreavus 提交于
      c754e824
    • Q
      e854d399
    • Q
      add a bunch of debug prints · a893117f
      QuietMisdreavus 提交于
      a893117f
  5. 13 9月, 2018 1 次提交
  6. 10 9月, 2018 2 次提交
  7. 07 9月, 2018 2 次提交
  8. 30 8月, 2018 1 次提交
  9. 28 8月, 2018 1 次提交
  10. 26 8月, 2018 1 次提交
  11. 25 8月, 2018 1 次提交
  12. 23 8月, 2018 1 次提交
  13. 20 8月, 2018 1 次提交
  14. 19 8月, 2018 2 次提交
  15. 05 8月, 2018 1 次提交
    • M
      Change rustdoc style so fully qualified names do not overlap src links · 3f92ff34
      Mike Boutin 提交于
      A type's fully qualified name will now wrap once it gets to the
      `[-][src]` link aligned against the right edge of the content area.
      Previously the two would overlap and the name would only wrap when
      hitting the edge of the content area. The `[-][src]` link will main at
      the top of the header.
      3f92ff34
  16. 02 8月, 2018 1 次提交
  17. 01 8月, 2018 3 次提交
  18. 28 7月, 2018 2 次提交
  19. 27 7月, 2018 3 次提交
  20. 25 7月, 2018 1 次提交
  21. 23 7月, 2018 6 次提交