SymbolDictionary.cs 323 B

12345678910111213141516
  1. using Jint.Native;
  2. using Jint.Runtime.Descriptors;
  3. namespace Jint.Collections
  4. {
  5. internal sealed class SymbolDictionary : DictionarySlim<JsSymbol, PropertyDescriptor>
  6. {
  7. public SymbolDictionary()
  8. {
  9. }
  10. public SymbolDictionary(int capacity) : base(capacity)
  11. {
  12. }
  13. }
  14. }