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

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