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 236a8bf commit a5d1bebCopy full SHA for a5d1beb
compiler/codegen/src/compile.rs
@@ -2030,9 +2030,7 @@ impl Compiler {
2030
Pattern::MatchSequence(_sequence) => {
2031
Err(self.error(CodegenErrorType::NotImplementedYet))
2032
}
2033
- Pattern::MatchMapping(_mapping) => {
2034
- Err(self.error(CodegenErrorType::NotImplementedYet))
2035
- }
+ Pattern::MatchMapping(_mapping) => Err(self.error(CodegenErrorType::NotImplementedYet)),
2036
Pattern::MatchClass(_class) => Err(self.error(CodegenErrorType::NotImplementedYet)),
2037
Pattern::MatchStar(star) => self.codegen_pattern_star(&star, pattern_context),
2038
Pattern::MatchAs(as_pattern) => self.codegen_pattern_as(&as_pattern, pattern_context),
0 commit comments