summaryrefslogtreecommitdiff
path: root/ICSharpCode.Decompiler
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-04-12 09:20:13 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-12 09:20:13 -0700
commitf975a6f2e3552c3309c8e10f15998be664d06882 (patch)
tree12b7c86a39b6fa22b11d9b13400947c0ac48b8b2 /ICSharpCode.Decompiler
parentba2a434ec13370cc4814b54f6ce51d4d16594f97 (diff)
downloadxamarin-forms-f975a6f2e3552c3309c8e10f15998be664d06882.tar.gz
xamarin-forms-f975a6f2e3552c3309c8e10f15998be664d06882.tar.bz2
xamarin-forms-f975a6f2e3552c3309c8e10f15998be664d06882.zip
Make resharper happier with comments
Diffstat (limited to 'ICSharpCode.Decompiler')
-rw-r--r--ICSharpCode.Decompiler/Ast/AstBuilder.cs5
-rw-r--r--ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs8
2 files changed, 0 insertions, 13 deletions
diff --git a/ICSharpCode.Decompiler/Ast/AstBuilder.cs b/ICSharpCode.Decompiler/Ast/AstBuilder.cs
index 9826388f..9a53237a 100644
--- a/ICSharpCode.Decompiler/Ast/AstBuilder.cs
+++ b/ICSharpCode.Decompiler/Ast/AstBuilder.cs
@@ -153,7 +153,6 @@ namespace ICSharpCode.Decompiler.Ast
/// <summary>
/// Generates C# code from the abstract source tree.
/// </summary>
- /// <remarks>This method adds ParenthesizedExpressions into the AST, and will run transformations if <see cref="RunTransformations"/> was not called explicitly</remarks>
public void GenerateCode(ITextOutput output)
{
if (!transformationsHaveRun)
@@ -440,10 +439,6 @@ namespace ICSharpCode.Decompiler.Ast
/// <summary>
/// Converts a type reference.
/// </summary>
- /// <param name="type">The Cecil type reference that should be converted into
- /// a type system type reference.</param>
- /// <param name="typeAttributes">Attributes associated with the Cecil type reference.
- /// This is used to support the 'dynamic' type.</param>
public static AstType ConvertType(TypeReference type, ICustomAttributeProvider typeAttributes = null, ConvertTypeOptions options = ConvertTypeOptions.None)
{
int typeIndex = 0;
diff --git a/ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs b/ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs
index 4a4a8138..4fb248de 100644
--- a/ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs
+++ b/ICSharpCode.Decompiler/ILAst/InitializerPeepholeTransforms.cs
@@ -398,14 +398,6 @@ namespace ICSharpCode.Decompiler.ILAst
/// <summary>
/// Parses an object initializer.
/// </summary>
- /// <param name="body">ILAst block</param>
- /// <param name="pos">
- /// Input: position of the instruction assigning to 'v'.
- /// Output: first position after the object initializer
- /// </param>
- /// <param name="v">The variable that holds the object being initialized</param>
- /// <param name="newObjExpr">The newobj instruction</param>
- /// <returns>InitObject instruction</returns>
ILExpression ParseObjectInitializer(List<ILNode> body, ref int pos, ILVariable v, ILExpression newObjExpr, bool isCollection, bool isValueType)
{
// Take care not to modify any existing ILExpressions in here.