We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3faeb9a commit 11dfce5Copy full SHA for 11dfce5
packages/formatjs/transform/src/lib.rs
@@ -75,6 +75,8 @@ impl MessageDescriptorExtractor for JSXAttrOrSpread {
75
| JSXAttrName::JSXNamespacedName(JSXNamespacedName { name, .. }) => {
76
Some(name.sym.to_string())
77
}
78
+ #[allow(unreachable_patterns)]
79
+ _ => unreachable!(),
80
};
81
let value = match value {
82
JSXAttrValue::Str(s) => Some(MessageDescriptionValue::Str(
0 commit comments