From c86ab70b07dc255c47fa4caa2dc8560a24dda735 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sat, 16 Jun 2012 20:45:16 -0700 Subject: [PATCH] Added dot completion support for import statements --- autocomplete.d | 17 +++++++++++++++++ main.d | 3 ++- types.d | 1 + 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/autocomplete.d b/autocomplete.d index 676ee4d..26d707f 100644 --- a/autocomplete.d +++ b/autocomplete.d @@ -11,6 +11,8 @@ import std.array; import std.conv; import std.stdio; import std.typecons; +import std.path; +import std.file; import parser; import langutils; @@ -294,6 +296,12 @@ struct AutoComplete auto index = assumeSorted(tokens).lowerBound(cursor).length - 1; Token t = 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( 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"))); } + string importComplete(const(Token)[] tokens) + { + string part = tokens.map("a.value").join("/").array(); + foreach (path; context.importDirectories) + { + if (exists()) + } + } + const(Token)[] tokens; CompletionContext context; } diff --git a/main.d b/main.d index f58e3bc..5b3d3ac 100644 --- a/main.d +++ b/main.d @@ -164,7 +164,8 @@ void main(string[] args) importDirs ~= getcwd(); auto tokens = args[1].readText().tokenize(); auto mod = parseModule(tokens); - auto context = new CompletionContext(mod); + CompletionContext context = new CompletionContext(mod); + context.importDirectories = importDirs; foreach (im; parallel(mod.imports)) { auto p = findAbsPath(importDirs, im); diff --git a/types.d b/types.d index 5e5fe45..c9cd2be 100644 --- a/types.d +++ b/types.d @@ -721,6 +721,7 @@ public: Module currentModule; Module[] modules; + string[] importDirectories; private: