forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV8TestProxy.cs
More file actions
30 lines (23 loc) · 679 Bytes
/
Copy pathV8TestProxy.cs
File metadata and controls
30 lines (23 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using Microsoft.ClearScript.V8.SplitProxy;
namespace Microsoft.ClearScript.V8
{
internal abstract class V8TestProxy : V8Proxy
{
public static V8TestProxy Create()
{
return new V8TestProxyImpl();
}
public abstract UIntPtr GetNativeDigest(string value);
public abstract Statistics GetStatistics();
#region Nested type: Statistics
internal sealed class Statistics
{
public ulong IsolateCount;
public ulong ContextCount;
}
#endregion
}
}