Prototype.cs 328 B

1234567891011121314
  1. using Jint.Native.Object;
  2. using Jint.Runtime;
  3. namespace Jint.Native;
  4. public abstract class Prototype : ObjectInstance
  5. {
  6. internal readonly Realm _realm;
  7. private protected Prototype(Engine engine, Realm realm) : base(engine, type: InternalTypes.Object | InternalTypes.PlainObject)
  8. {
  9. _realm = realm;
  10. }
  11. }