Added dot completion support for import statements
This commit is contained in:
parent
9c8295e013
commit
c86ab70b07
|
@ -11,6 +11,8 @@ import std.array;
|
||||||
import std.conv;
|
import std.conv;
|
||||||
import std.stdio;
|
import std.stdio;
|
||||||
import std.typecons;
|
import std.typecons;
|
||||||
|
import std.path;
|
||||||
|
import std.file;
|
||||||
|
|
||||||
import parser;
|
import parser;
|
||||||
import langutils;
|
import langutils;
|
||||||
|
@ -294,6 +296,12 @@ struct AutoComplete
|
||||||
auto index = assumeSorted(tokens).lowerBound(cursor).length - 1;
|
auto index = assumeSorted(tokens).lowerBound(cursor).length - 1;
|
||||||
Token t = tokens[index];
|
Token t = tokens[index];
|
||||||
size_t startIndex = findBeginningOfExpression(tokens, index);
|
size_t startIndex = findBeginningOfExpression(tokens, index);
|
||||||
|
|
||||||
|
if (startIndex - 1 < tokens.length && tokens[startIndex - 1] == TokenType.Import)
|
||||||
|
{
|
||||||
|
return importComplete(splitCallChain(tokens[startIndex .. index]));
|
||||||
|
}
|
||||||
|
|
||||||
auto expressionType = getTypeOfExpression(
|
auto expressionType = getTypeOfExpression(
|
||||||
splitCallChain(tokens[startIndex .. index]), tokens, cursor);
|
splitCallChain(tokens[startIndex .. index]), tokens, cursor);
|
||||||
|
|
||||||
|
@ -307,6 +315,15 @@ struct AutoComplete
|
||||||
return to!string(array(join(sort!"a.toLower() < b.toLower()"(app.data), "\n")));
|
return to!string(array(join(sort!"a.toLower() < b.toLower()"(app.data), "\n")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string importComplete(const(Token)[] tokens)
|
||||||
|
{
|
||||||
|
string part = tokens.map("a.value").join("/").array();
|
||||||
|
foreach (path; context.importDirectories)
|
||||||
|
{
|
||||||
|
if (exists())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const(Token)[] tokens;
|
const(Token)[] tokens;
|
||||||
CompletionContext context;
|
CompletionContext context;
|
||||||
}
|
}
|
||||||
|
|
3
main.d
3
main.d
|
@ -164,7 +164,8 @@ void main(string[] args)
|
||||||
importDirs ~= getcwd();
|
importDirs ~= getcwd();
|
||||||
auto tokens = args[1].readText().tokenize();
|
auto tokens = args[1].readText().tokenize();
|
||||||
auto mod = parseModule(tokens);
|
auto mod = parseModule(tokens);
|
||||||
auto context = new CompletionContext(mod);
|
CompletionContext context = new CompletionContext(mod);
|
||||||
|
context.importDirectories = importDirs;
|
||||||
foreach (im; parallel(mod.imports))
|
foreach (im; parallel(mod.imports))
|
||||||
{
|
{
|
||||||
auto p = findAbsPath(importDirs, im);
|
auto p = findAbsPath(importDirs, im);
|
||||||
|
|
Loading…
Reference in New Issue