aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand/src/builtin_macro.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_expand/src/builtin_macro.rs')
-rw-r--r--crates/hir_expand/src/builtin_macro.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/hir_expand/src/builtin_macro.rs b/crates/hir_expand/src/builtin_macro.rs
index df82cf8e6..dddbbcdac 100644
--- a/crates/hir_expand/src/builtin_macro.rs
+++ b/crates/hir_expand/src/builtin_macro.rs
@@ -69,13 +69,13 @@ pub fn find_builtin_macro(
69 69
70 match kind { 70 match kind {
71 Either::Left(kind) => Some(MacroDefId { 71 Either::Left(kind) => Some(MacroDefId {
72 krate: Some(krate), 72 krate,
73 ast_id: Some(ast_id), 73 ast_id: Some(ast_id),
74 kind: MacroDefKind::BuiltIn(kind), 74 kind: MacroDefKind::BuiltIn(kind),
75 local_inner: false, 75 local_inner: false,
76 }), 76 }),
77 Either::Right(kind) => Some(MacroDefId { 77 Either::Right(kind) => Some(MacroDefId {
78 krate: Some(krate), 78 krate,
79 ast_id: Some(ast_id), 79 ast_id: Some(ast_id),
80 kind: MacroDefKind::BuiltInEager(kind), 80 kind: MacroDefKind::BuiltInEager(kind),
81 local_inner: false, 81 local_inner: false,
@@ -534,7 +534,7 @@ mod tests {
534 Either::Left(expander) => { 534 Either::Left(expander) => {
535 // the first one should be a macro_rules 535 // the first one should be a macro_rules
536 let def = MacroDefId { 536 let def = MacroDefId {
537 krate: Some(CrateId(0)), 537 krate: CrateId(0),
538 ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(&macro_rules))), 538 ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(&macro_rules))),
539 kind: MacroDefKind::BuiltIn(expander), 539 kind: MacroDefKind::BuiltIn(expander),
540 local_inner: false, 540 local_inner: false,
@@ -555,7 +555,7 @@ mod tests {
555 Either::Right(expander) => { 555 Either::Right(expander) => {
556 // the first one should be a macro_rules 556 // the first one should be a macro_rules
557 let def = MacroDefId { 557 let def = MacroDefId {
558 krate: Some(krate), 558 krate,
559 ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(&macro_rules))), 559 ast_id: Some(AstId::new(file_id.into(), ast_id_map.ast_id(&macro_rules))),
560 kind: MacroDefKind::BuiltInEager(expander), 560 kind: MacroDefKind::BuiltInEager(expander),
561 local_inner: false, 561 local_inner: false,