Workaround for #92

This commit is contained in:
Hackerpilot 2014-01-29 15:38:30 -08:00
parent d0ad1d9d0f
commit 8092bc957c
1 changed files with 4 additions and 0 deletions

View File

@ -557,6 +557,10 @@ private:
{ {
immutable kind = i + 1 < importInfo.importParts.length immutable kind = i + 1 < importInfo.importParts.length
? CompletionKind.packageName : CompletionKind.moduleName; ? 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); ACSymbol* modPart = new ACSymbol(s, kind);
if (a is null) if (a is null)
{ {