fix: remove implements from class declaration

pull/14749/head
Taku Fukada 2 years ago
parent e38975eac9
commit 88dbb7f927
No known key found for this signature in database

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: remove implements from class declarations

@ -115,6 +115,7 @@ const visitors = {
if (node.declare) { if (node.declare) {
return b.empty; return b.empty;
} }
delete node.implements;
return context.next(); return context.next();
}, },
VariableDeclaration(node, context) { VariableDeclaration(node, context) {

Loading…
Cancel
Save