Fixed issue with enum parsing. Removed customization from Textadept module
This commit is contained in:
parent
ce3ce23099
commit
688fe8b599
|
@ -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]));
|
||||
|
|
4
build.sh
4
build.sh
|
@ -1,2 +1,2 @@
|
|||
#dmd *.d -release -noboundscheck -O -w -wi -m64 -property -ofdscanner #-inline
|
||||
dmd *.d -g -m64 -w -wi -property -ofdscanner
|
||||
#dmd *.d -release -noboundscheck -O -w -wi -m64 -property -ofdscanner #-inline
|
||||
dmd *.d -g -m64 -w -wi -property -ofdscanner
|
||||
|
|
|
@ -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
|
||||
|
|
4
parser.d
4
parser.d
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue