PropertyDictionary.cs 422 B

123456789101112131415161718
  1. using Jint.Runtime.Descriptors;
  2. namespace Jint.Collections;
  3. internal sealed class PropertyDictionary : HybridDictionary<PropertyDescriptor>
  4. {
  5. public PropertyDictionary()
  6. {
  7. }
  8. public PropertyDictionary(int capacity, bool checkExistingKeys) : base(capacity, checkExistingKeys)
  9. {
  10. }
  11. public PropertyDictionary(StringDictionarySlim<PropertyDescriptor> properties) : base(properties)
  12. {
  13. }
  14. }