Prototype.cs 298 B

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