public V8NativeObject()
        {
#if DEBUG && TRACE
            _CreationStack = Environment.StackTrace;
#endif
            _Proxy = this;
        }
Esempio n. 2
0
        public V8NativeObject(IV8NativeObject proxy)
        {
#if TRACE
            _CreationStack = Environment.StackTrace;
#endif
            _Proxy = proxy ?? this;
        }
Esempio n. 3
0
 // --------------------------------------------------------------------------------------------------------------------
 public V8NativeObject()
 {
     ProxyInternal = this;
 }
Esempio n. 4
0
 public V8NativeObject(IV8NativeObject proxy)
 {
     ProxyInternal = proxy ?? this;
 }
Esempio n. 5
0
 public V8NativeObject(IV8NativeObject proxy)
 {
     _Proxy = proxy ?? this;
 }
Esempio n. 6
0
        // --------------------------------------------------------------------------------------------------------------------

        public V8NativeObject()
        {
            _Proxy = this;
        }
Esempio n. 7
0
 public V8NativeObject(IV8NativeObject proxy)
 {
     _Proxy = proxy ?? this;
 }
Esempio n. 8
0
 // --------------------------------------------------------------------------------------------------------------------
 public V8NativeObject()
 {
     _Proxy = this;
 }
Esempio n. 9
0
 public RootableWeakReference(IV8NativeObject target, bool trackResurrection = true) : base(target, trackResurrection)
 {
 }