forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsValueType.cs
More file actions
73 lines (61 loc) · 1.41 KB
/
Copy pathJsValueType.cs
File metadata and controls
73 lines (61 loc) · 1.41 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
65
66
67
68
69
70
71
72
73
namespace JavaScriptEngineSwitcher.ChakraCore.JsRt
{
/// <summary>
/// The JavaScript type of a JavaScriptValue
/// </summary>
internal enum JsValueType
{
/// <summary>
/// The value is the <c>undefined</c> value
/// </summary>
Undefined = 0,
/// <summary>
/// The value is the <c>null</c> value
/// </summary>
Null = 1,
/// <summary>
/// The value is a JavaScript number value
/// </summary>
Number = 2,
/// <summary>
/// The value is a JavaScript string value
/// </summary>
String = 3,
/// <summary>
/// The value is a JavaScript Boolean value
/// </summary>
Boolean = 4,
/// <summary>
/// The value is a JavaScript object value
/// </summary>
Object = 5,
/// <summary>
/// The value is a JavaScript function object value
/// </summary>
Function = 6,
/// <summary>
/// The value is a JavaScript error object value
/// </summary>
Error = 7,
/// <summary>
/// The value is a JavaScript array object value
/// </summary>
Array = 8,
/// <summary>
/// The value is a JavaScript array object value
/// </summary>
Symbol = 9,
/// <summary>
/// The value is a JavaScript ArrayBuffer object value
/// </summary>
ArrayBuffer = 10,
/// <summary>
/// The value is a JavaScript typed array object value
/// </summary>
TypedArray = 11,
/// <summary>
/// The value is a JavaScript DataView object value
/// </summary>
DataView = 12
}
}