From 1cb3af902c8f2e3f73e7c78781373f1ab5788772 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 13 Oct 2014 20:14:45 +0400 Subject: Remove BindingContext and migrate to ResolveSession, discover symbols for {code ...} directive. --- src/Formats/StructuredFormatService.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Formats') diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt index 4285f8c9..5287e688 100644 --- a/src/Formats/StructuredFormatService.kt +++ b/src/Formats/StructuredFormatService.kt @@ -58,6 +58,9 @@ public abstract class StructuredFormatService(val locationService: LocationServi is ContentParagraph -> { appendText(this, formatText(location, content.children)) } + is ContentBlockCode -> { + appendBlockCode(this, formatText(location, content.children)) + } else -> append(formatText(location, content.children)) } }.toString() -- cgit