SymbolDictionary.cs 285 B

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