forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsErrorCode.cs
More file actions
193 lines (158 loc) · 4.78 KB
/
JsErrorCode.cs
File metadata and controls
193 lines (158 loc) · 4.78 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
namespace JavaScriptEngineSwitcher.ChakraCore.JsRt
{
/// <summary>
/// The error code returned from a Chakra hosting API
/// </summary>
internal enum JsErrorCode : uint
{
/// <summary>
/// Success error code
/// </summary>
NoError = 0,
/// <summary>
/// Category of errors that relates to incorrect usage of the API itself
/// </summary>
CategoryUsage = 0x10000,
/// <summary>
/// An argument to a hosting API was invalid
/// </summary>
InvalidArgument,
/// <summary>
/// An argument to a hosting API was null in a context where null is not allowed
/// </summary>
NullArgument,
/// <summary>
/// The hosting API requires that a context be current, but there is no current context
/// </summary>
NoCurrentContext,
/// <summary>
/// The engine is in an exception state and no APIs can be called until the exception is
/// cleared
/// </summary>
InExceptionState,
/// <summary>
/// A hosting API is not yet implemented
/// </summary>
NotImplemented,
/// <summary>
/// A hosting API was called on the wrong thread
/// </summary>
WrongThread,
/// <summary>
/// A runtime that is still in use cannot be disposed
/// </summary>
RuntimeInUse,
/// <summary>
/// A bad serialized script was used, or the serialized script was serialized by a
/// different version of the Chakra engine
/// </summary>
BadSerializedScript,
/// <summary>
/// The runtime is in a disabled state
/// </summary>
InDisabledState,
/// <summary>
/// Runtime does not support reliable script interruption
/// </summary>
CannotDisableExecution,
/// <summary>
/// A heap enumeration is currently underway in the script context
/// </summary>
HeapEnumInProgress,
/// <summary>
/// A hosting API that operates on object values was called with a non-object value
/// </summary>
ArgumentNotObject,
/// <summary>
/// A script context is in the middle of a profile callback
/// </summary>
InProfileCallback,
/// <summary>
/// A thread service callback is currently underway
/// </summary>
InThreadServiceCallback,
/// <summary>
/// Scripts cannot be serialized in debug contexts
/// </summary>
CannotSerializeDebugScript,
/// <summary>
/// The context cannot be put into a debug state because it is already in a debug state
/// </summary>
AlreadyDebuggingContext,
/// <summary>
/// The context cannot start profiling because it is already profiling
/// </summary>
AlreadyProfilingContext,
/// <summary>
/// Idle notification given when the host did not enable idle processing
/// </summary>
IdleNotEnabled,
/// <summary>
/// The context did not accept the enqueue callback
/// </summary>
CannotSetProjectionEnqueueCallback,
/// <summary>
/// Failed to start projection
/// </summary>
CannotStartProjection,
/// <summary>
/// The operation is not supported in an object before collect callback
/// </summary>
InObjectBeforeCollectCallback,
/// <summary>
/// Object cannot be unwrapped to IInspectable pointer
/// </summary>
ObjectNotInspectable,
/// <summary>
/// A hosting API that operates on symbol property ids but was called with a non-symbol property id.
/// The error code is returned by JsGetSymbolFromPropertyId if the function is called with non-symbol property id.
/// </summary>
PropertyNotSymbol,
/// <summary>
/// A hosting API that operates on string property ids but was called with a non-string property id.
/// The error code is returned by existing JsGetPropertyNamefromId if the function is called with non-string property id.
/// </summary>
PropertyNotString,
/// <summary>
/// Category of errors that relates to errors occurring within the engine itself
/// </summary>
CategoryEngine = 0x20000,
/// <summary>
/// The Chakra engine has run out of memory
/// </summary>
OutOfMemory,
/// <summary>
/// Category of errors that relates to errors in a script
/// </summary>
CategoryScript = 0x30000,
/// <summary>
/// A JavaScript exception occurred while running a script
/// </summary>
ScriptException,
/// <summary>
/// JavaScript failed to compile
/// </summary>
ScriptCompile,
/// <summary>
/// A script was terminated due to a request to suspend a runtime
/// </summary>
ScriptTerminated,
/// <summary>
/// A script was terminated because it tried to use <c>eval</c> or <c>function</c> and eval
/// was disabled
/// </summary>
ScriptEvalDisabled,
/// <summary>
/// Category of errors that are fatal and signify failure of the engine
/// </summary>
CategoryFatal = 0x40000,
/// <summary>
/// A fatal error in the engine has occurred
/// </summary>
Fatal,
/// <summary>
/// A hosting API was called with object created on different javascript runtime
/// </summary>
WrongRuntime
}
}