-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better(?) way of dealing with breaking in VariableDeclarations
closes #47
- Loading branch information
Showing
27 changed files
with
155 additions
and
119 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
....Tests/TestFiles/AnonymousObjectCreationExpression/AnonymousObjectCreationExpressions.cst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
public class ClassName | ||
{ | ||
public dynamic ShortValue = new { Property = true }; | ||
|
||
public dynamic LongValue = new | ||
{ | ||
One = "One", | ||
Two = "Two", | ||
ThreeThreeThree = "ThreeThreeThree" | ||
}; | ||
|
||
public dynamic Value = new { NoName }; | ||
} |
4 changes: 0 additions & 4 deletions
4
...ts/TestFiles/AnonymousObjectCreationExpression/BasicAnonymousObjectCreationExpression.cst
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
Src/CSharpier.Tests/TestFiles/AnonymousObjectCreationExpression/MultipleProperties.cst
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
Src/CSharpier.Tests/TestFiles/AnonymousObjectCreationExpression/NoNames.cst
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
Src/CSharpier.Tests/TestFiles/FieldDeclaration/FieldDeclarationComments.cst
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
Src/CSharpier.Tests/TestFiles/FieldDeclaration/FixedFieldWithSize.cst
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
Src/CSharpier.Tests/TestFiles/FieldDeclaration/NamespacedField.cst
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
Src/CSharpier.Tests/TestFiles/SwitchExpression/BasicSwitchExpression.cst
This file was deleted.
Oops, something went wrong.
10 changes: 9 additions & 1 deletion
10
...Expression/SwitchWithRecursivePattern.cst → ...es/SwitchExpression/SwitchExpressions.cst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.