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