From 6e93d83c8bb4433bcfb6f337cf4eb600c271504c Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Mon, 4 Nov 2019 00:36:51 +0100 Subject: [PATCH] Update TODOs --- Il2CppInspector/Reflection/MethodBase.cs | 2 +- Il2CppInspector/Reflection/TypeInfo.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Il2CppInspector/Reflection/MethodBase.cs b/Il2CppInspector/Reflection/MethodBase.cs index 7c4be4a..3eb00b6 100644 --- a/Il2CppInspector/Reflection/MethodBase.cs +++ b/Il2CppInspector/Reflection/MethodBase.cs @@ -76,7 +76,6 @@ namespace Il2CppInspector.Reflection GenericTypeParameters = pkg.GenericParameters.Skip((int)container.genericParameterStart).Take(container.type_argc).Select(p => new TypeInfo(this, p)).ToList(); // TODO: Constraints - // TODO: Attributes } // Set method attributes @@ -159,6 +158,7 @@ namespace Il2CppInspector.Reflection } // Get C# syntax-friendly list of parameters + // TODO: Parameter custom attributes public string GetParametersString() => string.Join(", ", DeclaredParameters.Select(p => $"{p.GetModifierString()}{p.ParameterType.CSharpName} {p.Name}")); diff --git a/Il2CppInspector/Reflection/TypeInfo.cs b/Il2CppInspector/Reflection/TypeInfo.cs index 02dcf09..0eaa753 100644 --- a/Il2CppInspector/Reflection/TypeInfo.cs +++ b/Il2CppInspector/Reflection/TypeInfo.cs @@ -202,7 +202,6 @@ namespace Il2CppInspector.Reflection { GenericTypeParameters = pkg.GenericParameters.Skip((int) container.genericParameterStart).Take(container.type_argc).Select(p => new TypeInfo(this, p)).ToList(); // TODO: Constraints - // TODO: Attributes } // Add to global type definition list