PropertyDictionary.cs 345 B

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