-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactoring existing generic purpose ObjectVisitor class to set of specific Visitors. * + ability to configure known types. * remove unnecessary file * code cleanup * v++ * v++ * to file scoped namespace * to file scoped namespace * remove unnecessary code
- Loading branch information
Showing
110 changed files
with
5,218 additions
and
4,229 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
namespace VarDump.CodeDom.Common | ||
namespace VarDump.CodeDom.Common; | ||
|
||
internal class CodeAnonymousTypeReference : CodeEmptyTypeReference | ||
{ | ||
internal class CodeAnonymousTypeReference : CodeEmptyTypeReference | ||
{ | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
namespace VarDump.CodeDom.Common | ||
namespace VarDump.CodeDom.Common; | ||
|
||
internal class CodeArrayDimensionExpression : CodeExpression | ||
{ | ||
internal class CodeArrayDimensionExpression : CodeExpression | ||
{ | ||
public CodeExpressionCollection Initializers { get; } = new(); | ||
public CodeExpressionCollection Initializers { get; } = new(); | ||
|
||
public CodeArrayDimensionExpression(CodeExpression[] initializers) | ||
{ | ||
Initializers.AddRange(initializers); | ||
} | ||
public CodeArrayDimensionExpression(CodeExpression[] initializers) | ||
{ | ||
Initializers.AddRange(initializers); | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
namespace VarDump.CodeDom.Common; | ||
|
||
namespace VarDump.CodeDom.Common | ||
internal class CodeAssignStatement : CodeStatement | ||
{ | ||
internal class CodeAssignStatement : CodeStatement | ||
{ | ||
public CodeAssignStatement() { } | ||
public CodeAssignStatement() { } | ||
|
||
public CodeAssignStatement(CodeExpression left, CodeExpression right) | ||
{ | ||
Left = left; | ||
Right = right; | ||
} | ||
public CodeAssignStatement(CodeExpression left, CodeExpression right) | ||
{ | ||
Left = left; | ||
Right = right; | ||
} | ||
|
||
public CodeExpression Left { get; set; } | ||
public CodeExpression Left { get; set; } | ||
|
||
public CodeExpression Right { get; set; } | ||
} | ||
} | ||
public CodeExpression Right { get; set; } | ||
} |
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.