Fix #190
This commit is contained in:
parent
1b6e6a5f4e
commit
f9b1997283
|
@ -143,6 +143,9 @@ private:
|
||||||
/// True if a space should be placed when parenDepth reaches zero
|
/// True if a space should be placed when parenDepth reaches zero
|
||||||
bool spaceAfterParens;
|
bool spaceAfterParens;
|
||||||
|
|
||||||
|
/// True if we're in an ASM block
|
||||||
|
bool inAsm;
|
||||||
|
|
||||||
void formatStep()
|
void formatStep()
|
||||||
{
|
{
|
||||||
assert(index < tokens.length);
|
assert(index < tokens.length);
|
||||||
|
@ -202,14 +205,35 @@ private:
|
||||||
{
|
{
|
||||||
formatBlockHeader();
|
formatBlockHeader();
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"do"))
|
else if (currentIs(tok!"do"))
|
||||||
{
|
{
|
||||||
formatBlockHeader();
|
formatBlockHeader();
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"else"))
|
else if (currentIs(tok!"else"))
|
||||||
{
|
{
|
||||||
formatElse();
|
formatElse();
|
||||||
}
|
}
|
||||||
|
else if (currentIs(tok!"asm"))
|
||||||
|
{
|
||||||
|
formatKeyword();
|
||||||
|
while (index < tokens.length && !currentIs(tok!"{"))
|
||||||
|
formatStep();
|
||||||
|
if (index < tokens.length)
|
||||||
|
{
|
||||||
|
int depth = 1;
|
||||||
|
formatStep();
|
||||||
|
inAsm = true;
|
||||||
|
while (index < tokens.length)
|
||||||
|
{
|
||||||
|
if (currentIs(tok!"{"))
|
||||||
|
++depth;
|
||||||
|
else if (currentIs(tok!"}"))
|
||||||
|
--depth;
|
||||||
|
formatStep();
|
||||||
|
}
|
||||||
|
inAsm = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (isKeyword(current.type))
|
else if (isKeyword(current.type))
|
||||||
{
|
{
|
||||||
formatKeyword();
|
formatKeyword();
|
||||||
|
@ -228,7 +252,9 @@ private:
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
if (index < tokens.length && (currentIs(tok!"identifier")
|
if (index < tokens.length && (currentIs(tok!"identifier")
|
||||||
|| isBasicType(current.type) || currentIs(tok!"@") || currentIs(tok!"if")))
|
|| isBasicType(current.type) || currentIs(tok!"@")
|
||||||
|
|| currentIs(tok!"if") || isNumberLiteral(tokens[index].type)
|
||||||
|
|| (inAsm && peekBack2Is(tok!";") && currentIs(tok!"["))))
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
|
@ -699,8 +725,6 @@ private:
|
||||||
|
|
||||||
void formatBlockHeader()
|
void formatBlockHeader()
|
||||||
{
|
{
|
||||||
//import std.stdio:stderr;
|
|
||||||
//stderr.writeln(__FUNCTION__);
|
|
||||||
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug");
|
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug");
|
||||||
immutable bool b = a
|
immutable bool b = a
|
||||||
|| astInformation.conditionalWithElseLocations.canFindIndex(current.index);
|
|| astInformation.conditionalWithElseLocations.canFindIndex(current.index);
|
||||||
|
@ -712,11 +736,11 @@ private:
|
||||||
if (shouldPushIndent)
|
if (shouldPushIndent)
|
||||||
indents.push(current.type);
|
indents.push(current.type);
|
||||||
writeToken();
|
writeToken();
|
||||||
if (currentIs(tok!"("))
|
if (currentIs(tok!"("))
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
writeParens(false);
|
writeParens(false);
|
||||||
}
|
}
|
||||||
if (currentIs(tok!"switch") || (currentIs(tok!"final") && peekIs(tok!"switch")))
|
if (currentIs(tok!"switch") || (currentIs(tok!"final") && peekIs(tok!"switch")))
|
||||||
write(" ");
|
write(" ");
|
||||||
else if (currentIs(tok!"comment"))
|
else if (currentIs(tok!"comment"))
|
||||||
|
@ -1399,9 +1423,9 @@ const pure @safe @nogc:
|
||||||
return peekImplementation(tokenType, -1, ignoreComments);
|
return peekImplementation(tokenType, -1, ignoreComments);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsKeyword(bool ignoreComments = true)
|
bool peekBackIsKeyword(bool ignoreComments = true)
|
||||||
{
|
{
|
||||||
if (index == 0)
|
if (index == 0)
|
||||||
return false;
|
return false;
|
||||||
auto i = index - 1;
|
auto i = index - 1;
|
||||||
if (ignoreComments)
|
if (ignoreComments)
|
||||||
|
@ -1411,8 +1435,8 @@ const pure @safe @nogc:
|
||||||
return false;
|
return false;
|
||||||
i--;
|
i--;
|
||||||
}
|
}
|
||||||
return isKeyword(tokens[i].type);
|
return isKeyword(tokens[i].type);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsOneOf(bool ignoreComments, IdType[] tokenTypes...)
|
bool peekBackIsOneOf(bool ignoreComments, IdType[] tokenTypes...)
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
asm
|
||||||
|
{
|
||||||
|
dl 12345;
|
||||||
|
movdqu [R8], XMM0;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
asm
|
||||||
|
{
|
||||||
|
dl 12345;
|
||||||
|
movdqu [R8], XMM0;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
unittest {
|
||||||
|
asm {
|
||||||
|
dl 12345;
|
||||||
|
movdqu [R8], XMM0;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue