From 8092bc957cc3c1545bfc878c55a48a2e1fe4ef52 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 29 Jan 2014 15:38:30 -0800 Subject: [PATCH] Workaround for #92 --- astconverter.d | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/astconverter.d b/astconverter.d index b33e868..edcaeda 100644 --- a/astconverter.d +++ b/astconverter.d @@ -557,6 +557,10 @@ private: { immutable kind = i + 1 < importInfo.importParts.length ? CompletionKind.packageName : CompletionKind.moduleName; + // Begin compiler bug workaround + if (kind == 'L') + std.stdio.writeln("ERROR ", kind); + // End compiler bug workaround ACSymbol* modPart = new ACSymbol(s, kind); if (a is null) {