Update TODOs

This commit is contained in:
Katy Coe
2019-11-04 00:36:51 +01:00
parent 5dfc9ebebb
commit 6e93d83c8b
2 changed files with 1 additions and 2 deletions

View File

@@ -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}"));

View File

@@ -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