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
273 lines (216 loc) · 6.35 KB
/
JsErrorCode.cs
File metadata and controls
273 lines (216 loc) · 6.35 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
namespace JavaScriptEngineSwitcher.ChakraCore.JsRt
{
/// <summary>
/// The error code returned from a Chakra hosting API
/// </summary>
public enum JsErrorCode : uint
{
/// <summary>
/// Success error code
/// </summary>
NoError = 0,
#region Usage
/// <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>
/// Module evaulation is called in wrong context
/// </summary>
InvalidContext,
/// <summary>
/// Module evaulation is called in wrong context
/// </summary>
InvalidModuleHostInfoKind,
/// <summary>
/// Module was parsed already when JsParseModuleSource is called
/// </summary>
ModuleParsed,
/// <summary>
/// Module was evaluated already when JsModuleEvaluation is called
/// </summary>
ModuleEvaluated,
#endregion
#region Engine
/// <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>
/// The Chakra engine failed to set the Floating Point Unit state
/// </summary>
BadFPUState,
#endregion
#region Script
/// <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,
#endregion
#region Fatal
/// <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,
#endregion
#region Diagnostic
/// <summary>
/// Category of errors that are related to failures during diagnostic operations
/// </summary>
CategoryDiagError = 0x50000,
/// <summary>
/// The object for which the debugging API was called was not found
/// </summary>
DiagAlreadyInDebugMode,
/// <summary>
/// The debugging API can only be called when VM is in debug mode
/// </summary>
DiagNotInDebugMode,
/// <summary>
/// The debugging API can only be called when VM is at a break
/// </summary>
DiagNotAtBreak,
/// <summary>
/// Debugging API was called with an invalid handle.
/// </summary>
DiagInvalidHandle,
/// <summary>
/// The object for which the debugging API was called was not found
/// </summary>
DiagObjectNotFound,
/// <summary>
/// VM was unable to perfom the request action
/// </summary>
DiagUnableToPerformAction
#endregion
}
}