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

Batch up all plugin breaking changes #32767

Merged
merged 10 commits into from
Apr 6, 2016
Merged

Commits on Apr 6, 2016

  1. Configuration menu
    Copy the full SHA
    8b09372 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef4c724 View commit details
    Browse the repository at this point in the history
  3. syntax: dismantle ast_util.

    eddyb committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    7bebe80 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ffca6c3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    20f0f3c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7f3744f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8fe4290 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e8a8dfb View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#32682 - petrochenkov:field3, r=Manishearth

     The AST part of rust-lang#31937
    
    Unlike HIR, AST still uses `Option` for field names because parser can't know field indexes reliably due to constructions like
    ```
    struct S(#[cfg(false)] u8, u8); // The index of the second field changes from 1 during parsing to 0 after expansion.
    ```
    and I wouldn't like to put the burden of renaming fields on expansion passes and syntax extensions.
    
    plugin-[breaking-change] cc rust-lang#31645
    r? @Manishearth
    Manishearth committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    af7b00b View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#32570 - eddyb:tis-but-a-front, r=nikomatsakis

     r? @nikomatsakis
    
    Conflicts:
    	src/librustc_save_analysis/lib.rs
    	src/libsyntax/ast_util.rs
    Manishearth committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    552af51 View commit details
    Browse the repository at this point in the history