Merge pull request #460 from WebFreak001/fix-trivials
Fix trivial issues
This commit is contained in:
commit
024c6e6a63
17
README.md
17
README.md
|
@ -5,12 +5,7 @@
|
|||
**dfmt** is beta quality. Make backups of your files or use source control
|
||||
when using the **--inplace** option.
|
||||
|
||||
## Building
|
||||
### 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/```.
|
||||
## Installation
|
||||
|
||||
### Installing with DUB
|
||||
|
||||
|
@ -18,6 +13,16 @@ when using the **--inplace** option.
|
|||
> 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
|
||||
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
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
void f(bool body)
|
||||
{
|
||||
if (body)
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,10 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
argsFile=$1.args
|
||||
if [ -e ${argsFile} ]; then
|
||||
args=$(cat ${argsFile})
|
||||
fi
|
||||
echo "Args:" ${args}
|
||||
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=allman ${args} $1.d > allman/$1.d.ref
|
||||
../bin/dfmt --brace_style=otbs ${args} $1.d > otbs/$1.d.ref
|
||||
|
||||
echo "------------------"
|
||||
echo "allman:"
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void f(bool body) {
|
||||
if (body) {
|
||||
}
|
||||
}
|
|
@ -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";
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void f(bool body) {
|
||||
if (body) {
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue