Remove some unnecessary debug logging
This commit is contained in:
parent
beddf301d4
commit
c378464032
|
@ -734,7 +734,7 @@ DSymbol*[] getSymbolsByTokenChain(T)(Scope* completionScope,
|
||||||
break loop;
|
break loop;
|
||||||
break;
|
break;
|
||||||
case tok!"identifier":
|
case tok!"identifier":
|
||||||
trace(symbols[0].qualifier, " ", symbols[0].kind);
|
// trace(symbols[0].qualifier, " ", symbols[0].kind);
|
||||||
|
|
||||||
// Use type instead of the symbol itself for certain symbol kinds
|
// Use type instead of the symbol itself for certain symbol kinds
|
||||||
while (symbols[0].qualifier == SymbolQualifier.func
|
while (symbols[0].qualifier == SymbolQualifier.func
|
||||||
|
@ -749,7 +749,7 @@ DSymbol*[] getSymbolsByTokenChain(T)(Scope* completionScope,
|
||||||
break loop;
|
break loop;
|
||||||
}
|
}
|
||||||
|
|
||||||
trace("looking for ", tokens[i].text, " in ", symbols[0].name);
|
// trace("looking for ", tokens[i].text, " in ", symbols[0].name);
|
||||||
symbols = symbols[0].getPartsByName(internString(tokens[i].text));
|
symbols = symbols[0].getPartsByName(internString(tokens[i].text));
|
||||||
if (symbols.length == 0)
|
if (symbols.length == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue