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

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