Some files didn't get checked in...
This commit is contained in:
parent
0783d92e0d
commit
c97fca76ee
|
@ -123,7 +123,7 @@ public:
|
|||
auto app = appender!(ACSymbol*[])();
|
||||
foreach (part; parts.equalRange(&s))
|
||||
app.put(part);
|
||||
foreach (extra; extraSymbols.equalRange(&s))
|
||||
foreach (extra; aliasThisParts.equalRange(&s))
|
||||
app.put(extra.getPartsByName(name));
|
||||
foreach (im; parts.equalRange(&p))
|
||||
foreach (part; im.type.parts.equalRange(&s))
|
||||
|
|
|
@ -631,7 +631,7 @@ void setCompletions(T)(ref AutocompleteResponse response,
|
|||
}
|
||||
TTree!(ACSymbol*, true, "a < b", false) parts;
|
||||
parts.insert(symbols[0].parts[]);
|
||||
foreach (s; symbols[0].extraSymbols[])
|
||||
foreach (s; symbols[0].aliasThisParts[])
|
||||
parts.insert(s.parts[]);
|
||||
foreach (s; parts[].filter!(a => a.name !is null
|
||||
&& a.name.length > 0 && a.name[0] != '*'
|
||||
|
|
|
@ -62,7 +62,7 @@ private struct CacheEntry
|
|||
return path == other.path;
|
||||
}
|
||||
|
||||
size_t toHash() const
|
||||
size_t toHash() const nothrow @safe
|
||||
{
|
||||
import core.internal.hash : hashOf;
|
||||
return hashOf(path);
|
||||
|
|
Loading…
Reference in New Issue