mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
This commit is contained in:
parent
b3fea658b0
commit
2cb5737cf7
1 changed files with 8 additions and 0 deletions
|
|
@ -381,6 +381,14 @@ namespace Cosmos.IL2CPU {
|
|||
}
|
||||
}
|
||||
}
|
||||
// Queue Types directly related to method
|
||||
Queue(aMethod.DeclaringType, aMethod, "Declaring Type");
|
||||
if (aMethod is System.Reflection.MethodInfo) {
|
||||
Queue(((System.Reflection.MethodInfo)aMethod).ReturnType, aMethod, "Return Type");
|
||||
}
|
||||
foreach (var xParam in aMethod.GetParameters()) {
|
||||
Queue(xParam.ParameterType, aMethod, "Parameter");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue