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)
 {
 }