Revert "Fix #125"

This reverts commit 2f7d42087c.
This commit is contained in:
Hackerpilot 2015-05-08 00:06:05 -07:00
parent 6639b00eef
commit 5f424b085f
7 changed files with 5 additions and 98 deletions

View File

@ -47,28 +47,6 @@ dfmt --inplace --space_after_cast=false --max_line_length=80 \
--soft_max_line_length=70 --brace_style=otbs file.d
```
## Disabling formatting
Formatting can be temporarily disabled by placing the comments ```// dfmt off```
and ```// dfmt on``` around code that you do not want formatted.
```d
void main(string[] args)
{
bool optionOne, optionTwo, optionThree;
// dfmt has no way of knowing that "getopt" is special, so it wraps the
// argument list normally
getopt(args, "optionOne", &optionOne, "optionTwo", &optionTwo, "optionThree", &optionThree);
// dfmt off
getopt(args,
"optionOne", &optionOne,
"optionTwo", &optionTwo,
"optionThree", &optionThree);
// dfmt on
}
```
## Configuration
**dfmt** uses [EditorConfig](http://editorconfig.org/) configuration files.
**dfmt**-specific properties are prefixed with *dfmt_*.

View File

@ -1,7 +1,7 @@
{
"name": "dfmt",
"description": "Dfmt is a formatter for D source code",
"version": "0.4.0-alpha",
"version": "0.3.4",
"targetType": "executable",
"license": "BSL-1.0",
"dependencies": {

View File

@ -32,7 +32,7 @@ void format(OutputRange)(string source_desc, ubyte[] buffer, OutputRange output,
astInformation.cleanup();
auto tokens = byToken(buffer, config, &cache).array();
auto depths = generateDepthInfo(tokens);
auto tokenFormatter = TokenFormatter!OutputRange(buffer, tokens, depths, output,
auto tokenFormatter = TokenFormatter!OutputRange(tokens, depths, output,
&astInformation, formatterConfig);
tokenFormatter.format();
}
@ -74,10 +74,9 @@ struct TokenFormatter(OutputRange)
* astInformation = information about the AST used to inform formatting
* decisions.
*/
this(const ubyte[] rawSource, const(Token)[] tokens, immutable short[] depths,
OutputRange output, ASTInformation* astInformation, Config* config)
this(const(Token)[] tokens, immutable short[] depths, OutputRange output,
ASTInformation* astInformation, Config* config)
{
this.rawSource = rawSource;
this.tokens = tokens;
this.depths = depths;
this.output = output;
@ -106,9 +105,6 @@ private:
/// Output to write output to
OutputRange output;
/// Used for skipping parts of the file with `dfmt off` and `dfmt on` comments
const ubyte[] rawSource;
/// Tokens being formatted
const Token[] tokens;
@ -238,43 +234,8 @@ private:
writeToken();
}
string commentText(size_t i)
{
import std.string : strip;
assert(tokens[i].type == tok!"comment");
string commentText = tokens[i].text;
if (commentText[0 ..2] == "//")
commentText = commentText[2 .. $];
else
commentText = commentText[2 .. $ - 2];
return commentText.strip();
}
void skipFormatting()
{
size_t dfmtOff = index;
size_t dfmtOn = index;
foreach (i; dfmtOff + 1.. tokens.length)
{
dfmtOn = i;
if (tokens[i].type != tok!"comment")
continue;
immutable string commentText = commentText(i);
if (commentText == "dfmt on")
break;
}
write(cast(string) rawSource[tokens[dfmtOff].index .. tokens[dfmtOn].index]);
index = dfmtOn;
}
void formatComment()
{
if (commentText(index) == "dfmt off")
{
skipFormatting();
return;
}
immutable bool currIsSlashSlash = tokens[index].text[0 .. 2] == "//";
immutable prevTokenEndLine = index == 0 ? size_t.max : tokenEndLine(tokens[index - 1]);
immutable size_t currTokenLine = tokens[index].line;

View File

@ -144,7 +144,7 @@ else
private void printHelp()
{
writeln(`dfmt 0.4.0-alpha
writeln(`dfmt 0.3.4
Options:
--help | -h Print this help message

View File

@ -1,11 +0,0 @@
void main(string[] args)
{
// dfmt off
getopt(args,
"optionOne", &optionOne,
"optionTwo", &optionTwo,
"optionThree", &optionThree);
// dfmt on
getopt(args, "optionOne", &optionOne, "optionTwo", &optionTwo, "optionThree", &optionThree);
}

View File

@ -1,11 +0,0 @@
void main(string[] args)
{
// dfmt off
getopt(args,
"optionOne", &optionOne,
"optionTwo", &optionTwo,
"optionThree", &optionThree);
// dfmt on
getopt(args, "optionOne", &optionOne, "optionTwo", &optionTwo, "optionThree", &optionThree);
}

View File

@ -1,10 +0,0 @@
void main(string[] args) {
// dfmt off
getopt(args,
"optionOne", &optionOne,
"optionTwo", &optionTwo,
"optionThree", &optionThree);
// dfmt on
getopt(args, "optionOne", &optionOne, "optionTwo", &optionTwo, "optionThree", &optionThree);
}