Fixed bug with version statement completion

This commit is contained in:
Hackerpilot 2012-05-04 14:49:09 -07:00
parent bbd2ec13ea
commit 99dfd0973a
4 changed files with 19 additions and 15 deletions

View File

@ -169,16 +169,12 @@ struct AutoComplete
string parenComplete(size_t cursor) string parenComplete(size_t cursor)
{ {
stderr.writeln("parenComplete");
auto index = assumeSorted(tokens).lowerBound(cursor).length - 2; auto index = assumeSorted(tokens).lowerBound(cursor).length - 2;
Token t = tokens[index]; Token t = tokens[index];
stderr.writeln(t);
if (t.startIndex + t.value.length + 1 != cursor)
return "";
switch (tokens[index].type) switch (tokens[index].type)
{ {
case TokenType.Version: case TokenType.Version:
return to!string(join(map!`a ~ "?1"`(versions), " ").array()); return to!string(join(map!`a ~ "?5"`(versions), " ").array());
case TokenType.If: case TokenType.If:
case TokenType.Cast: case TokenType.Cast:
case TokenType.While: case TokenType.While:

5
main.d
View File

@ -128,7 +128,6 @@ string[] loadConfig()
return dirs; return dirs;
} }
void main(string[] args) void main(string[] args)
{ {
string[] importDirs; string[] importDirs;
@ -159,6 +158,10 @@ void main(string[] args)
if (dotComplete || parenComplete) if (dotComplete || parenComplete)
{ {
if (isAbsolute(args[1]))
importDirs ~= dirName(args[1]);
else
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); auto context = new CompletionContext(mod);

View File

@ -164,7 +164,8 @@ body
{ {
++endIndex; ++endIndex;
} }
return inputString[startIndex .. endIndex]; auto e = endIndex > inputString.length ? inputString.length : endIndex;
return inputString[startIndex .. e];
} }
/** /**

20
types.d
View File

@ -349,16 +349,9 @@ protected:
} }
/** class HasDeclarations
* Module is a container class for the other classes
*/
class Module
{ {
public: public:
/// Module name. Will be blank if there is no module statement
string name;
/// List of interfaces declared in this module /// List of interfaces declared in this module
Inherits[] interfaces; Inherits[] interfaces;
@ -379,6 +372,17 @@ public:
/// List of enums declared in this module /// List of enums declared in this module
Enum[] enums; Enum[] enums;
}
/**
* Module is a container class for the other classes
*/
class Module : HasDeclarations
{
public:
/// Module name. Will be blank if there is no module statement
string name;
/// List of other modules that are imported by this one /// List of other modules that are imported by this one
string[] imports; string[] imports;