コード例 #1
0
        public V8NativeObject()
        {
#if DEBUG && TRACE
            _CreationStack = Environment.StackTrace;
#endif
            _Proxy = this;
        }
コード例 #2
0
ファイル: V8NativeObject.cs プロジェクト: wukongiii/v8dotnet
        public V8NativeObject(IV8NativeObject proxy)
        {
#if TRACE
            _CreationStack = Environment.StackTrace;
#endif
            _Proxy = proxy ?? this;
        }
コード例 #3
0
ファイル: V8NativeObject.cs プロジェクト: killf/v8dotnet
 // --------------------------------------------------------------------------------------------------------------------
 public V8NativeObject()
 {
     ProxyInternal = this;
 }
コード例 #4
0
ファイル: V8NativeObject.cs プロジェクト: killf/v8dotnet
 public V8NativeObject(IV8NativeObject proxy)
 {
     ProxyInternal = proxy ?? this;
 }
コード例 #5
0
 public V8NativeObject(IV8NativeObject proxy)
 {
     _Proxy = proxy ?? this;
 }
コード例 #6
0
        // --------------------------------------------------------------------------------------------------------------------

        public V8NativeObject()
        {
            _Proxy = this;
        }
コード例 #7
0
ファイル: V8NativeObject.cs プロジェクト: rjamesnw/v8dotnet
 public V8NativeObject(IV8NativeObject proxy)
 {
     _Proxy = proxy ?? this;
 }
コード例 #8
0
ファイル: V8NativeObject.cs プロジェクト: rjamesnw/v8dotnet
 // --------------------------------------------------------------------------------------------------------------------
 public V8NativeObject()
 {
     _Proxy = this;
 }
コード例 #9
0
 public RootableWeakReference(IV8NativeObject target, bool trackResurrection = true) : base(target, trackResurrection)
 {
 }