forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChakraCorePrecompiledScript.cs
More file actions
64 lines (55 loc) · 1.39 KB
/
ChakraCorePrecompiledScript.cs
File metadata and controls
64 lines (55 loc) · 1.39 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using JavaScriptEngineSwitcher.Core;
namespace JavaScriptEngineSwitcher.ChakraCore
{
/// <summary>
/// Represents a pre-compiled script that can be executed by different instances of the ChakraCore JS engine
/// </summary>
internal sealed class ChakraCorePrecompiledScript : IPrecompiledScript
{
/// <summary>
/// Gets a source code of the script
/// </summary>
public string Code
{
get;
private set;
}
/// <summary>
/// Gets a cached data for accelerated recompilation
/// </summary>
public byte[] CachedBytes
{
get;
private set;
}
/// <summary>
/// Gets a document name
/// </summary>
public string DocumentName
{
get;
private set;
}
/// <summary>
/// Constructs an instance of pre-compiled script
/// </summary>
/// <param name="code">The source code of the script</param>
/// <param name="cachedBytes">Cached data for accelerated recompilation</param>
/// <param name="documentName">Document name</param>
public ChakraCorePrecompiledScript(string code, byte[] cachedBytes, string documentName)
{
Code = code;
CachedBytes = cachedBytes;
DocumentName = documentName;
}
#region IPrecompiledScript implementation
/// <summary>
/// Gets a name of JS engine for which the pre-compiled script was created
/// </summary>
public string EngineName
{
get { return ChakraCoreJsEngine.EngineName; }
}
#endregion
}
}