-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Detect stability attributes on methods. #10990
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ use driver::session; | |
use middle::privacy; | ||
use middle::trans::adt; // for `adt::is_ffi_safe` | ||
use middle::ty; | ||
use middle::typeck; | ||
use middle::pat_util; | ||
use metadata::csearch; | ||
use util::ppaux::{ty_to_str}; | ||
|
@@ -359,6 +360,9 @@ struct Context<'a> { | |
cur: SmallIntMap<(level, LintSource)>, | ||
// context we're checking in (used to access fields like sess) | ||
tcx: ty::ctxt, | ||
// maps from an expression id that corresponds to a method call to the | ||
// details of the method to be invoked | ||
method_map: typeck::method_map, | ||
// Items exported by the crate; used by the missing_doc lint. | ||
exported_items: &'a privacy::ExportedItems, | ||
// The id of the current `ast::struct_def` being walked. | ||
|
@@ -1176,20 +1180,43 @@ fn check_missing_doc_variant(cx: &Context, v: &ast::variant) { | |
/// Checks for use of items with #[deprecated], #[experimental] and | ||
/// #[unstable] (or none of them) attributes. | ||
fn check_stability(cx: &Context, e: &ast::Expr) { | ||
let def = match e.node { | ||
ast::ExprMethodCall(..) | | ||
ast::ExprPath(..) | | ||
ast::ExprStruct(..) => { | ||
let id = match e.node { | ||
ast::ExprPath(..) | ast::ExprStruct(..) => { | ||
match cx.tcx.def_map.find(&e.id) { | ||
Some(&def) => def, | ||
Some(&def) => ast_util::def_id_of_def(def), | ||
None => return | ||
} | ||
} | ||
ast::ExprMethodCall(..) => { | ||
match cx.method_map.find(&e.id) { | ||
Some(&typeck::method_map_entry { origin, .. }) => { | ||
match origin { | ||
typeck::method_static(def_id) => { | ||
// If this implements a trait method, get def_id | ||
// of the method inside trait definition. | ||
// Otherwise, use the current def_id (which refers | ||
// to the method inside impl). | ||
ty::trait_method_of_method( | ||
cx.tcx, def_id).unwrap_or(def_id) | ||
} | ||
typeck::method_param(typeck::method_param { | ||
trait_id: trait_id, | ||
method_num: index, | ||
.. | ||
}) | ||
| typeck::method_object(typeck::method_object { | ||
trait_id: trait_id, | ||
method_num: index, | ||
.. | ||
}) => ty::trait_method(cx.tcx, trait_id, index).def_id | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks ok to me, although it might be worth adding tests like: trait Foo {
#[deprecated]
fn bar(&self) {}
}
fn param<F: Foo>(f: F) {
f.bar()
}
fn object(f: &Foo) {
f.bar()
} to check that both of these work properly. |
||
} | ||
} | ||
None => return | ||
} | ||
} | ||
_ => return | ||
}; | ||
|
||
let id = ast_util::def_id_of_def(def); | ||
|
||
let stability = if ast_util::is_local(id) { | ||
// this crate | ||
match cx.tcx.items.find(&id.node) { | ||
|
@@ -1208,7 +1235,8 @@ fn check_stability(cx: &Context, e: &ast::Expr) { | |
None => return | ||
} | ||
} | ||
_ => cx.tcx.sess.bug(format!("handle_def: {:?} not found", id)) | ||
_ => cx.tcx.sess.span_bug(e.span, | ||
format!("handle_def: {:?} not found", id)) | ||
} | ||
} else { | ||
// cross-crate | ||
|
@@ -1395,12 +1423,14 @@ impl<'a> IdVisitingOperation for Context<'a> { | |
} | ||
|
||
pub fn check_crate(tcx: ty::ctxt, | ||
method_map: typeck::method_map, | ||
exported_items: &privacy::ExportedItems, | ||
crate: &ast::Crate) { | ||
let mut cx = Context { | ||
dict: @get_lint_dict(), | ||
cur: SmallIntMap::new(), | ||
tcx: tcx, | ||
method_map: method_map, | ||
exported_items: exported_items, | ||
cur_struct_def_id: -1, | ||
is_doc_hidden: false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To check my understanding: this is basically saying that in
SomeType.bar()
will be checking the attributes on the method marked*
, whileSomeType.baz()
will just be checking the line marked+
(I guess the second statement is obvious, since there isn't anything else to check anyway).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, that's what I had in mind.