Merge pull request #460 from WebFreak001/fix-trivials

Fix trivial issues
This commit is contained in:
Sebastian Wilzbach 2019-12-03 02:13:34 +01:00 committed by GitHub
commit 024c6e6a63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 115 additions and 8 deletions

View File

@ -5,12 +5,7 @@
**dfmt** is beta quality. Make backups of your files or use source control **dfmt** is beta quality. Make backups of your files or use source control
when using the **--inplace** option. when using the **--inplace** option.
## Building ## Installation
### Using Make
* Clone the repository
* Run ```git submodule update --init --recursive``` in the dfmt directory
* To compile with DMD, run ```make``` in the dfmt directory. To compile with
LDC, run ```make ldc``` instead. The generated binary will be placed in ```dfmt/bin/```.
### Installing with DUB ### Installing with DUB
@ -18,6 +13,16 @@ when using the **--inplace** option.
> dub fetch --version='~master' dfmt && dub run dfmt -- -h > dub fetch --version='~master' dfmt && dub run dfmt -- -h
``` ```
### Building from source using Make
* Clone the repository
* Run ```git submodule update --init --recursive``` in the dfmt directory
* To compile with DMD, run ```make``` in the dfmt directory. To compile with
LDC, run ```make ldc``` instead. The generated binary will be placed in ```dfmt/bin/```.
### Building from source using dub
* Clone the repository
* run `dub build --build=release`, optionally with `--compiler=ldc2`
## Using ## Using
By default, dfmt reads its input from **stdin** and writes to **stdout**. By default, dfmt reads its input from **stdin** and writes to **stdout**.
If a file name is specified on the command line, input will be read from the If a file name is specified on the command line, input will be read from the

View File

@ -0,0 +1,15 @@
void foo()
{
string command;
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
unittest
{
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
}
}

View File

@ -0,0 +1,16 @@
void main()
{
auto myTid = runTask({
auto conn = connectTCP("localhost", 4222);
auto l = Lexer(conn);
foreach (t; l)
{
}
conn.close();
});
// foo
runEventLoop();
}

View File

@ -0,0 +1,6 @@
void f(bool body)
{
if (body)
{
}
}

View File

@ -1,10 +1,12 @@
#!/usr/bin/env bash
argsFile=$1.args argsFile=$1.args
if [ -e ${argsFile} ]; then if [ -e ${argsFile} ]; then
args=$(cat ${argsFile}) args=$(cat ${argsFile})
fi fi
echo "Args:" ${args} echo "Args:" ${args}
dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref ../bin/dfmt --brace_style=allman ${args} $1.d > allman/$1.d.ref
dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref ../bin/dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref
echo "------------------" echo "------------------"
echo "allman:" echo "allman:"

11
tests/issue0134.d Normal file
View File

@ -0,0 +1,11 @@
void foo() {
string command;
version (Posix) command ~= " 2> /dev/null 1> /dev/null";
version (Posix) command ~= " 2> /dev/null 1> /dev/null";
unittest
{
version (Posix) command ~= " 2> /dev/null 1> /dev/null";
}
}

17
tests/issue0195.d Normal file
View File

@ -0,0 +1,17 @@
void main()
{
auto myTid = runTask({
auto conn = connectTCP("localhost", 4222);
auto l = Lexer(conn);
foreach (t;
l)
{
}
conn.close();
});
// foo
runEventLoop();
}

4
tests/issue0430.d Normal file
View File

@ -0,0 +1,4 @@
void f(bool body) {
if (body) {
}
}

View File

@ -0,0 +1,13 @@
void foo() {
string command;
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
unittest {
version (Posix)
command ~= " 2> /dev/null 1> /dev/null";
}
}

View File

@ -0,0 +1,14 @@
void main() {
auto myTid = runTask({
auto conn = connectTCP("localhost", 4222);
auto l = Lexer(conn);
foreach (t; l) {
}
conn.close();
});
// foo
runEventLoop();
}

View File

@ -0,0 +1,4 @@
void f(bool body) {
if (body) {
}
}