8000 Improve performance of generating JS class from Metadata by ammarahm-ed · Pull Request #1824 · NativeScript/android · GitHub
[go: up one dir, main page]

Skip to content

Improve performance of generating JS class from Metadata #1824

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

Merged
merged 10 commits into from
Jan 19, 2025
Prev Previous commit
Next Next commit
fix: isResolved value not copied
  • Loading branch information
ammarahm-ed committed Oct 8, 2024
commit 5ea3e2c30a47bab9b87585e309aabdde84f98470
2 changes: 1 addition & 1 deletion test-app/runtime/src/main/cpp/MetadataEntry.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace tns {
declaringType = other.declaringType;
paramCount = other.paramCount;
isFinal = other.isFinal;
isStatic = other.isResolved;
isResolved = other.isResolved;
isResolvedSet = other.isResolvedSet;
isFinalSet = other.isFinalSet;
}
Expand Down
Loading
0