Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 7 pull requests #85474

Closed
wants to merge 14 commits into from

Commits on May 14, 2021

  1. Move std::memchr to sys_common

    CDirkx committed May 14, 2021
    Configuration menu
    Copy the full SHA
    5353c5c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67e8f12 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2021

  1. ⬆️ rust-analyzer

    lnicola committed May 17, 2021
    Configuration menu
    Copy the full SHA
    f054ce3 View commit details
    Browse the repository at this point in the history
  2. PassWrapper: update for LLVM change D102093

    In https://reviews.llvm.org/D102093 lots of things stopped taking the
    DebugLogging boolean parameter. Mercifully we appear to always set
    DebugPassManager to false, so I don't think we're losing anything by not
    passing this parameter.
    durin42 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    445658b View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. Add diagnostic item to CStr

    mgacek8 committed May 18, 2021
    Configuration menu
    Copy the full SHA
    d730cc6 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. Add method-toggle to <details> for methods.

    The makes the code for handling "auto-hide" settings more consistent.
    jsha committed May 19, 2021
    Configuration menu
    Copy the full SHA
    24480de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec32bcf View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#85169 - jsha:hoist-classes, r=GuillaumeGomez

    Add method-toggle to <details> for methods
    
    The makes the code for handling "auto-hide" settings more consistent.
    
    Demo at https://hoffman-andrews.com/rust/hoist-classes/std/string/struct.String.html
    
    Fixes rust-lang#84829
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    d466302 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#85275 - CDirkx:memchr, r=m-ou-se

    Move `std::memchr` to `sys_common`
    
    `std::memchr` is a thin abstraction over the different `memchr` implementations in `sys`, along with documentation and tests. The module is only used internally by `std`, nothing is exported externally. Code like this is exactly what the `sys_common` module is for, so this PR moves it there.
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    72d3483 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#85287 - eggyal:expose-test-concurrent, r=m-…

    …ou-se
    
    Expose `Concurrent` (private type in public i'face)
    
    rust-lang#53410 introduced experimental support for custom test frameworks.
    
    Such frameworks may wish to build upon `library/test` by calling into its publicly exposed API (which I entirely understand is wholly unstable).  However, any that wish to call `test::run_test` cannot currently do so because `test::options::Concurrent` (the type of its `concurrent` parameter) is not publicly exposed.
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    50bcdb5 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#85400 - lnicola:rust-analyzer-2021-05-17, r…

    …=jonas-schievink
    
    ⬆️ rust-analyzer
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    8a5d812 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#85416 - durin42:llvm-catchup-may-2021, r=na…

    …gisa
    
    PassWrapper: update for LLVM change D102093
    
    In https://reviews.llvm.org/D102093 lots of things stopped taking the
    DebugLogging boolean parameter. Mercifully we appear to always set
    DebugPassManager to false, so I don't think we're losing anything by not
    passing this parameter.
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    d967940 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#85439 - mgacek8:add_diagnostic_item_to_CStr…

    …_type, r=davidtwco
    
    Add diagnostic item to `CStr`
    
    Required for clippy issue: rust-lang/rust-clippy#7145
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    905ec41 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#85470 - GuillaumeGomez:fix-css-rules, r=jsha

    Fix invalid CSS rules for a:hover
    
    When hovering some links:
    
    ![Screenshot from 2021-05-19 15-00-31](https://user-images.githubusercontent.com/3050060/118823585-5f2a4b80-b8b9-11eb-8043-bb7759a178c7.png)
    ![Screenshot from 2021-05-19 15-00-29](https://user-images.githubusercontent.com/3050060/118823566-5b96c480-b8b9-11eb-8c4e-08e490752fbf.png)
    
    It is a side-effect from rust-lang#84462.
    
    r? `@jsha`
    Dylan-DPC authored May 19, 2021
    Configuration menu
    Copy the full SHA
    a296ade View commit details
    Browse the repository at this point in the history