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

Destabilize format_args! internals #24312

Merged
merged 3 commits into from
Apr 14, 2015

Conversation

rprichard
Copy link
Contributor

Fixes #22953.

@rust-highfive
Copy link
Collaborator

r? @alexcrichton

(rust_highfive has picked a reviewer for you, use r? to override)

@rprichard rprichard changed the title Destabilize format_args! Destabilize format_args! internals Apr 10, 2015
@rprichard
Copy link
Contributor Author

cc @huonw

@bors
Copy link
Contributor

bors commented Apr 12, 2015

☔ The latest upstream changes (presumably #24003) made this pull request unmergeable. Please resolve the merge conflicts.

@alexcrichton
Copy link
Member

Nice! r=me with a rebase

…rnals

`format_args!` uses `#[allow_internal_unstable]` to access internal
functions and structs that are marked unstable. For this to work, the
spans on AST nodes referencing unstable internals must be equal (same
lo/hi values) to the `format_args!` call site, so that the stability
checker can recognize that the AST node was generated by the macro.
Arguments, Formatters, and the various format traits remain stable. The
format_args! macro uses #[allow_internal_unstable] to allow it access to
the unstable things in core::fmt.

Destabilized things include a "v1" in their name:
 * core::fmt::rt
 * core::fmt::rt::v1 (the module and all contents)
 * core::fmt::ArgumentV1
 * core::fmt::ArgumentV1::new
 * core::fmt::ArgumentV1::from_usize
 * core::fmt::Arguments::new_v1
 * core::fmt::Arguments::new_v1_formatted

The unstable message was copied from that of std::io::_print.
Now that the internals of `format_args!` are unstable, tests that use it
don't compile after pretty-printing (unless they also declare the necessary
feature).
@rprichard
Copy link
Contributor Author

@alexcrichton It's rebased.

@alexcrichton
Copy link
Member

@bors: r+ 8615563

@bors
Copy link
Contributor

bors commented Apr 14, 2015

⌛ Testing commit 8615563 with merge dabf0c6...

@bors bors merged commit 8615563 into rust-lang:master Apr 14, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Destabilise the internals of format_args!
4 participants