Fix crash with malformed with statements
This commit is contained in:
parent
cd71108de1
commit
2129f0625b
|
@ -256,8 +256,8 @@ struct Scope
|
||||||
{
|
{
|
||||||
foreach (item; sc.symbols[])
|
foreach (item; sc.symbols[])
|
||||||
{
|
{
|
||||||
if (item.kind == CompletionKind.importSymbol
|
if (item.type !is null && (item.kind == CompletionKind.importSymbol
|
||||||
|| item.kind == CompletionKind.withSymbol)
|
|| item.kind == CompletionKind.withSymbol))
|
||||||
{
|
{
|
||||||
foreach (i; item.type.parts[])
|
foreach (i; item.type.parts[])
|
||||||
symbols.insert(i);
|
symbols.insert(i);
|
||||||
|
|
Loading…
Reference in New Issue