This commit is contained in:
Hackerpilot 2015-06-04 19:20:58 -07:00
parent 363cb13b22
commit 8fbb3a513c
9 changed files with 46 additions and 10 deletions

View File

@ -41,6 +41,7 @@ found in .editorconfig files.
* **--split_operator_at_line_end**: See **dfmt_split_operator_at_line_end** below * **--split_operator_at_line_end**: See **dfmt_split_operator_at_line_end** below
* **--tab_width**: See **tab_width** below * **--tab_width**: See **tab_width** below
* **--selective_import_space**: See **dfmt_selective_import_space** below * **--selective_import_space**: See **dfmt_selective_import_space** below
* **--compact_labeled_statements**: See **dfmt_compact_labeled_statements** below
### Example ### Example
``` ```
@ -96,6 +97,7 @@ dfmt_split_operator_at_line_end | `true`, `false` | `false` | Place operators on
dfmt_space_after_cast | `true`, `false` | `false` | Insert space after the closing paren of a `cast` expression dfmt_space_after_cast | `true`, `false` | `false` | Insert space after the closing paren of a `cast` expression
dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | `true` | Insert space after `if`, `while`, `foreach`, etc, and before the `(` dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | `true` | Insert space after `if`, `while`, `foreach`, etc, and before the `(`
dfmt_selective_import_space | `true`, `false` | `true` | Insert space after the module name and before the `:` for selective imports dfmt_selective_import_space | `true`, `false` | `true` | Insert space after the module name and before the `:` for selective imports
dfmt_compact_labeled_statements | `true`, `false` | `true` | Place labels on the same line as the labeled `switch`, `for`, `foreach`, or `while` statement
## Terminology ## Terminology
* Braces - `{` and `}` * Braces - `{` and `}`

View File

@ -40,6 +40,8 @@ struct Config
OptionalBoolean dfmt_split_operator_at_line_end; OptionalBoolean dfmt_split_operator_at_line_end;
/// ///
OptionalBoolean dfmt_selective_import_space; OptionalBoolean dfmt_selective_import_space;
///
OptionalBoolean dfmt_compact_labeled_statements;
mixin StandardEditorConfigFields; mixin StandardEditorConfigFields;
@ -65,6 +67,7 @@ struct Config
dfmt_space_after_keywords = OptionalBoolean.t; dfmt_space_after_keywords = OptionalBoolean.t;
dfmt_split_operator_at_line_end = OptionalBoolean.f; dfmt_split_operator_at_line_end = OptionalBoolean.f;
dfmt_selective_import_space = OptionalBoolean.t; dfmt_selective_import_space = OptionalBoolean.t;
dfmt_compact_labeled_statements = OptionalBoolean.t;
} }
/** /**

View File

@ -487,7 +487,10 @@ private:
else if (isBlockHeader(1) && !peekIs(tok!"if")) else if (isBlockHeader(1) && !peekIs(tok!"if"))
{ {
writeToken(); writeToken();
write(" "); if (config.dfmt_compact_labeled_statements)
write(" ");
else
newline();
} }
else if (linebreakHints.canFindIndex(index)) else if (linebreakHints.canFindIndex(index))
{ {
@ -1083,7 +1086,8 @@ private:
indentLevel = l; indentLevel = l;
switchLabel = true; switchLabel = true;
} }
else if (!isBlockHeader(2) || peek2Is(tok!"if")) else if (config.dfmt_compact_labeled_statements == OptionalBoolean.f
|| !isBlockHeader(2) || peek2Is(tok!"if"))
{ {
immutable l2 = indents.indentToMostRecent(tok!"{"); immutable l2 = indents.indentToMostRecent(tok!"{");
indentLevel = l2 == -1 ? indentLevel : l2; indentLevel = l2 == -1 ? indentLevel : l2;

View File

@ -30,25 +30,29 @@ else
import dfmt.editorconfig : OptionalBoolean; import dfmt.editorconfig : OptionalBoolean;
import std.exception : enforceEx; import std.exception : enforceEx;
enforceEx!GetOptException(value == "true" || value == "false", "Invalid argument"); enforceEx!GetOptException(value == "true" || value == "false", "Invalid argument");
immutable OptionalBoolean optVal = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
switch (option) switch (option)
{ {
case "align_switch_statements": case "align_switch_statements":
optConfig.dfmt_align_switch_statements = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_align_switch_statements = optVal;
break; break;
case "outdent_attributes": case "outdent_attributes":
optConfig.dfmt_outdent_attributes = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_outdent_attributes = optVal;
break; break;
case "outdent_labels": case "outdent_labels":
optConfig.dfmt_outdent_labels = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_outdent_labels = optVal;
break; break;
case "space_after_cast": case "space_after_cast":
optConfig.dfmt_space_after_cast = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_space_after_cast = optVal;
break; break;
case "split_operator_at_line_end": case "split_operator_at_line_end":
optConfig.dfmt_split_operator_at_line_end = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_split_operator_at_line_end = optVal;
break; break;
case "selective_import_space": case "selective_import_space":
optConfig.dfmt_selective_import_space = value == "true" ? OptionalBoolean.t : OptionalBoolean.f; optConfig.dfmt_selective_import_space = optVal;
break;
case "compact_labeled_statements":
optConfig.dfmt_compact_labeled_statements = optVal;
break; break;
default: assert(false, "Invalid command-line switch"); default: assert(false, "Invalid command-line switch");
} }
@ -71,6 +75,7 @@ else
"space_after_cast", &handleBooleans, "space_after_cast", &handleBooleans,
"selective_import_space", &handleBooleans, "selective_import_space", &handleBooleans,
"split_operator_at_line_end", &handleBooleans, "split_operator_at_line_end", &handleBooleans,
"compact_labeled_statements", &handleBooleans,
"tab_width", &optConfig.tab_width); "tab_width", &optConfig.tab_width);
} }
catch (GetOptException e) catch (GetOptException e)
@ -167,7 +172,9 @@ Formatting Options:
--outdent_attributes --outdent_attributes
--outdent_labels --outdent_labels
--space_after_cast --space_after_cast
--split_operator_at_line_end`); --selective_import_space
--split_operator_at_line_end
--compact_labeled_statements`);
} }
private string createFilePath(bool readFromStdin, string fileName) private string createFilePath(bool readFromStdin, string fileName)

View File

@ -0,0 +1,7 @@
unittest
{
Label:
while (1)
{
}
}

View File

@ -2,7 +2,7 @@ argsFile=$1.args
if [ -e ${argsFile} ]; then if [ -e ${argsFile} ]; then
args=$(cat ${argsFile}) args=$(cat ${argsFile})
fi fi
echo ${args} echo "Args:" ${args}
dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref
dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref

1
tests/issue0076.args Normal file
View File

@ -0,0 +1 @@
--compact_labeled_statements=false

7
tests/issue0076.d Normal file
View File

@ -0,0 +1,7 @@
unittest
{
Label:
while (1)
{
}
}

View File

@ -0,0 +1,5 @@
unittest {
Label:
while (1) {
}
}