-
-
Notifications
You must be signed in to change notification settings - Fork 288
Upgrade to AsmResolver 6 beta 6 #521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -143,7 +143,8 @@ public static TypeDefinition GetPrimitiveTypeDef(Il2CppTypeEnum type) => | |
| typeArguments[i] = typeArgument; | ||
| } | ||
|
|
||
| return baseType.MakeGenericInstanceType(typeArguments); | ||
| var runtimeContext = Cpp2IlApi.CurrentAppContext!.GetExtraData<RuntimeContext>("RuntimeContext") ?? throw new("AsmResolver runtime context not found in application analysis context"); | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not massively in love with this adding a new reliance on the static state (
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not really new. This method already relied on |
||
| return baseType.MakeGenericInstanceType(runtimeContext, typeArguments); | ||
| } | ||
|
|
||
| private readonly record struct ParsedTypeString(string BaseType, string Suffix, string[] GenericArguments); | ||
|
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.