From 3a41fc92e21ac1b470b6f9127eafad214f43ac36 Mon Sep 17 00:00:00 2001 From: agu Date: Fri, 15 Dec 2023 19:17:01 +0800 Subject: [PATCH] Fixup delta_to_markdown (#1601) --- lib/src/packages/quill_markdown/delta_to_markdown.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/src/packages/quill_markdown/delta_to_markdown.dart b/lib/src/packages/quill_markdown/delta_to_markdown.dart index a7c7e9dc..0803fabe 100644 --- a/lib/src/packages/quill_markdown/delta_to_markdown.dart +++ b/lib/src/packages/quill_markdown/delta_to_markdown.dart @@ -310,15 +310,15 @@ abstract class _NodeVisitor { extension _NodeX on Node { T accept(_NodeVisitor visitor, [T? context]) { switch (runtimeType) { - case Root _: + case Root: return visitor.visitRoot(this as Root, context); - case Block _: + case Block: return visitor.visitBlock(this as Block, context); - case Line _: + case Line: return visitor.visitLine(this as Line, context); - case QuillText _: + case QuillText: return visitor.visitText(this as QuillText, context); - case Embed _: + case Embed: return visitor.visitEmbed(this as Embed, context); } throw Exception('Container of type $runtimeType cannot be visited');