diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-09-18 14:40:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-18 14:40:45 +0100 |
commit | 5e1500ec7493f2e82020eefd17a9f384a8a42f4b (patch) | |
tree | 72332355087da5fb9f518ae04a9fa73a4f93a70d /crates/hir | |
parent | 086f1c4b3025b405fde077df3319551140136131 (diff) | |
parent | 9dc0afe854380f17bbec9100187ef3d3aa397f28 (diff) |
Merge #6030
6030: Small proc macro cleanup r=jonas-schievink a=jonas-schievink
git got really confused, but all I did in the first commit was unindent a few lines
Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/hir')
-rw-r--r-- | crates/hir/src/code_model.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir/src/code_model.rs b/crates/hir/src/code_model.rs index 7a9747fc7..849c8f6d0 100644 --- a/crates/hir/src/code_model.rs +++ b/crates/hir/src/code_model.rs | |||
@@ -908,12 +908,12 @@ impl MacroDef { | |||
908 | 908 | ||
909 | /// Indicate it is a proc-macro | 909 | /// Indicate it is a proc-macro |
910 | pub fn is_proc_macro(&self) -> bool { | 910 | pub fn is_proc_macro(&self) -> bool { |
911 | matches!(self.id.kind, MacroDefKind::CustomDerive(_)) | 911 | matches!(self.id.kind, MacroDefKind::ProcMacro(_)) |
912 | } | 912 | } |
913 | 913 | ||
914 | /// Indicate it is a derive macro | 914 | /// Indicate it is a derive macro |
915 | pub fn is_derive_macro(&self) -> bool { | 915 | pub fn is_derive_macro(&self) -> bool { |
916 | matches!(self.id.kind, MacroDefKind::CustomDerive(_) | MacroDefKind::BuiltInDerive(_)) | 916 | matches!(self.id.kind, MacroDefKind::ProcMacro(_) | MacroDefKind::BuiltInDerive(_)) |
917 | } | 917 | } |
918 | } | 918 | } |
919 | 919 | ||