Fix: extrace space after first field

This commit is contained in:
sobaya 2019-08-01 16:58:41 +09:00
parent 1024f16715
commit 81c607a115
3 changed files with 6 additions and 5 deletions

View File

@ -749,7 +749,8 @@ private:
}
else if (peekBackIs(tok!"identifier") && (peekBack2Is(tok!"{", true)
|| peekBack2Is(tok!"}", true) || peekBack2Is(tok!";", true)
|| peekBack2Is(tok!":", true)) && !(isBlockHeader(1) && !peekIs(tok!"if")))
|| peekBack2Is(tok!":", true) || peekBack2Is(tok!",", true))
&& !(isBlockHeader(1) && !peekIs(tok!"if")))
{
writeToken();
if (isStructInitializer)

View File

@ -1,6 +1,6 @@
void foo()
{
S s1 = {a: 3};
S s2 = {a: 3, b : "test string"};
S s3 = {a: 3, b : "test string", c : {x: 3.14, y : 3 + 4}};
S s2 = {a: 3, b: "test string"};
S s3 = {a: 3, b: "test string", c: {x: 3.14, y: 3 + 4}};
}

View File

@ -1,5 +1,5 @@
void foo() {
S s1 = {a: 3};
S s2 = {a: 3, b : "test string"};
S s3 = {a: 3, b : "test string", c : {x: 3.14, y : 3 + 4}};
S s2 = {a: 3, b: "test string"};
S s3 = {a: 3, b: "test string", c: {x: 3.14, y: 3 + 4}};
}