PropertyDictionary.cs 472 B

12345678910111213141516171819
  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. public PropertyDictionary(StringDictionarySlim<PropertyDescriptor> properties) : base(properties)
  13. {
  14. }
  15. }
  16. }