12345678910111213141516171819 |
- using Jint.Runtime.Descriptors;
- namespace Jint.Collections
- {
- internal sealed class PropertyDictionary : HybridDictionary<PropertyDescriptor>
- {
- public PropertyDictionary()
- {
- }
- public PropertyDictionary(int capacity, bool checkExistingKeys) : base(capacity, checkExistingKeys)
- {
- }
- public PropertyDictionary(StringDictionarySlim<PropertyDescriptor> properties) : base(properties)
- {
- }
- }
- }
|