From 9c0626e154d5494289d7da67e244e54832c66b70 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sat, 16 Nov 2013 23:40:47 +0000 Subject: [PATCH] Fix #80 --- autocomplete.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autocomplete.d b/autocomplete.d index 8868ddd..1d21e28 100644 --- a/autocomplete.d +++ b/autocomplete.d @@ -98,7 +98,7 @@ const(ACSymbol)*[] getSymbolsByTokenChain(T)(const(Scope)* completionScope, else { Log.trace("Found ", symbols[0].name, " at ", symbols[0].location, - " with type ", symbols[0].type.name); + " with type", symbols[0].type is null ? "null" : symbols[0].type.name); } if (completionType == CompletionType.identifiers