We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Reflect metadata 的实现是:使用内部的一个 WeakMap,利用了 WeakMap 不增加引用计数的特点,将对象作为 Key,元数据集合作为 Value,存到 WeakMap 中去,具体实现为:
WeakMap<any, Map<any, Map<any, any>>>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reflect metadata 的实现是:使用内部的一个 WeakMap,利用了 WeakMap 不增加引用计数的特点,将对象作为 Key,元数据集合作为 Value,存到 WeakMap 中去,具体实现为:
The text was updated successfully, but these errors were encountered: