Fixed issue with enum parsing. Removed customization from Textadept module

This commit is contained in:
Hackerpilot 2012-11-12 14:34:17 -08:00
parent ce3ce23099
commit 688fe8b599
4 changed files with 5 additions and 5 deletions

View File

@ -299,7 +299,6 @@ struct AutoComplete
auto index = assumeSorted(tokens).lowerBound(cursor).length - 1;
Token t = tokens[index];
size_t startIndex = findBeginningOfExpression(tokens, index);
stderr.writeln("Token before startIndex is ", tokens[startIndex - 1]);
if (startIndex - 1 < tokens.length && tokens[startIndex - 1] == TokenType.Import)
{
return importComplete(splitCallChain(tokens[startIndex .. index]));

View File

@ -378,7 +378,6 @@ events.connect(events.CHAR_ADDED, function(ch)
local command = M.PATH_TO_DSCANNER
.. (character == "." and " --dotComplete " or " --parenComplete ")
.. fileName .. " " .. buffer.current_pos .. " -I" .. buffer.filename:match(".+[\\/]")
.. " -I ~/ludumdare24/src/Derelict3/import"
local p = io.popen(command)
local r = p:read("*a")
if r ~= "\n" then

View File

@ -532,7 +532,7 @@ body
skipBlockStatement(tokens, index);
return e;
}
else
else if (index + 1 < tokens.length && tokens[index + 1] == TokenType.Assign)
{
// enum m = "abcd";
e.name = tokens[index].value;
@ -546,6 +546,8 @@ body
}
}
e.name = tokens[index++].value;
if (tokens[index] == TokenType.Colon)
{
index++;