Fixed float lexing and static analysis issues
This commit is contained in:
parent
8a444fbd89
commit
2cf405896a
|
@ -1486,7 +1486,7 @@ class XMLPrinter : ASTVisitor
|
|||
output.writeln("</xorExpression>");
|
||||
}
|
||||
|
||||
alias ASTVisitor.visit visit;
|
||||
alias visit = ASTVisitor.visit;
|
||||
|
||||
private static string xmlEscape(string s)
|
||||
{
|
||||
|
|
2
build.sh
2
build.sh
|
@ -12,7 +12,7 @@ dmd\
|
|||
analysis/*.d\
|
||||
-ofdscanner\
|
||||
-m64\
|
||||
-O -release -inline -noboundscheck
|
||||
-O -release -noboundscheck
|
||||
|
||||
#gdc\
|
||||
# main.d\
|
||||
|
|
2
ctags.d
2
ctags.d
|
@ -134,7 +134,7 @@ class CTagsPrinter : ASTVisitor
|
|||
dec.accept(this);
|
||||
}
|
||||
|
||||
alias ASTVisitor.visit visit;
|
||||
alias visit = ASTVisitor.visit;
|
||||
|
||||
string fileName;
|
||||
string[] tagLines;
|
||||
|
|
|
@ -31,7 +31,7 @@ class ImportPrinter : ASTVisitor
|
|||
}
|
||||
}
|
||||
|
||||
alias ASTVisitor.visit visit;
|
||||
alias visit = ASTVisitor.visit;
|
||||
|
||||
bool ignore = true;
|
||||
}
|
||||
|
|
3
main.d
3
main.d
|
@ -51,9 +51,10 @@ int main(string[] args)
|
|||
"tokenDump", &tokenDump, "styleCheck", &styleCheck,
|
||||
"muffinButton", &muffin);
|
||||
}
|
||||
catch (Exception e)
|
||||
catch (ConvException e)
|
||||
{
|
||||
stderr.writeln(e.msg);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (muffin)
|
||||
|
|
|
@ -160,7 +160,7 @@ class Outliner : ASTVisitor
|
|||
|
||||
int indentLevel;
|
||||
|
||||
alias ASTVisitor.visit visit;
|
||||
alias visit = ASTVisitor.visit;
|
||||
|
||||
File output;
|
||||
}
|
||||
|
|
|
@ -715,13 +715,11 @@ public struct DLexer
|
|||
lexExponent(type);
|
||||
break decimalLoop;
|
||||
case '.':
|
||||
if (foundDot)
|
||||
break decimalLoop;
|
||||
auto lookahead = range.peek(2);
|
||||
if (lookahead.length == 2 && lookahead[1] == '.')
|
||||
if (foundDot || !range.canPeek(1) || range.peek(1)[1] == '.')
|
||||
break decimalLoop;
|
||||
else
|
||||
{
|
||||
auto lookahead = range.peek(1);
|
||||
// The following bit of silliness tries to tell the
|
||||
// difference between "int dot identifier" and
|
||||
// "double identifier".
|
||||
|
|
Loading…
Reference in New Issue