diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-08-24 13:40:46 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-08-24 13:41:58 +0200 |
commit | 714a5b4248daee3a96a70734243bbd58aced4e27 (patch) | |
tree | eaa9d1c536d40294cc4d7c4caf9627a6cdae27ab /components/script_plugins/utils.rs | |
parent | 6ff252478110e10df1e7abaef199de805bf8f1d5 (diff) | |
download | servo-714a5b4248daee3a96a70734243bbd58aced4e27.tar.gz servo-714a5b4248daee3a96a70734243bbd58aced4e27.zip |
Upgrade to rustc 1.39.0-nightly (9eae1fc0e 2019-08-23)
Diffstat (limited to 'components/script_plugins/utils.rs')
-rw-r--r-- | components/script_plugins/utils.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/components/script_plugins/utils.rs b/components/script_plugins/utils.rs index 686b104daf6..6815b7bb0a6 100644 --- a/components/script_plugins/utils.rs +++ b/components/script_plugins/utils.rs @@ -30,12 +30,8 @@ pub fn match_def_path(cx: &LateContext, def_id: DefId, path: &[Symbol]) -> bool } pub fn in_derive_expn(span: Span) -> bool { - if let Some(i) = span.ctxt().outer_expn().expn_info() { - if let ExpnKind::Macro(MacroKind::Attr, n) = i.kind { - n.as_str().contains("derive") - } else { - false - } + if let ExpnKind::Macro(MacroKind::Attr, n) = span.ctxt().outer_expn_data().kind { + n.as_str().contains("derive") } else { false } |