JsErrorCode
列挙型メンバー 29
| 名前 | 10進 | 16進 |
|---|---|---|
| JsNoError | 0 | 0x0 |
| JsErrorCategoryUsage | 65536 | 0x10000 |
| JsErrorInvalidArgument | 65537 | 0x10001 |
| JsErrorNullArgument | 65538 | 0x10002 |
| JsErrorNoCurrentContext | 65539 | 0x10003 |
| JsErrorInExceptionState | 65540 | 0x10004 |
| JsErrorNotImplemented | 65541 | 0x10005 |
| JsErrorWrongThread | 65542 | 0x10006 |
| JsErrorRuntimeInUse | 65543 | 0x10007 |
| JsErrorBadSerializedScript | 65544 | 0x10008 |
| JsErrorInDisabledState | 65545 | 0x10009 |
| JsErrorCannotDisableExecution | 65546 | 0x1000A |
| JsErrorHeapEnumInProgress | 65547 | 0x1000B |
| JsErrorArgumentNotObject | 65548 | 0x1000C |
| JsErrorInProfileCallback | 65549 | 0x1000D |
| JsErrorInThreadServiceCallback | 65550 | 0x1000E |
| JsErrorCannotSerializeDebugScript | 65551 | 0x1000F |
| JsErrorAlreadyDebuggingContext | 65552 | 0x10010 |
| JsErrorAlreadyProfilingContext | 65553 | 0x10011 |
| JsErrorIdleNotEnabled | 65554 | 0x10012 |
| JsErrorCategoryEngine | 131072 | 0x20000 |
| JsErrorOutOfMemory | 131073 | 0x20001 |
| JsErrorCategoryScript | 196608 | 0x30000 |
| JsErrorScriptException | 196609 | 0x30001 |
| JsErrorScriptCompile | 196610 | 0x30002 |
| JsErrorScriptTerminated | 196611 | 0x30003 |
| JsErrorScriptEvalDisabled | 196612 | 0x30004 |
| JsErrorCategoryFatal | 262144 | 0x40000 |
| JsErrorFatal | 262145 | 0x40001 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum JsErrorCode : unsigned int {
JsNoError = 0,
JsErrorCategoryUsage = 65536,
JsErrorInvalidArgument = 65537,
JsErrorNullArgument = 65538,
JsErrorNoCurrentContext = 65539,
JsErrorInExceptionState = 65540,
JsErrorNotImplemented = 65541,
JsErrorWrongThread = 65542,
JsErrorRuntimeInUse = 65543,
JsErrorBadSerializedScript = 65544,
JsErrorInDisabledState = 65545,
JsErrorCannotDisableExecution = 65546,
JsErrorHeapEnumInProgress = 65547,
JsErrorArgumentNotObject = 65548,
JsErrorInProfileCallback = 65549,
JsErrorInThreadServiceCallback = 65550,
JsErrorCannotSerializeDebugScript = 65551,
JsErrorAlreadyDebuggingContext = 65552,
JsErrorAlreadyProfilingContext = 65553,
JsErrorIdleNotEnabled = 65554,
JsErrorCategoryEngine = 131072,
JsErrorOutOfMemory = 131073,
JsErrorCategoryScript = 196608,
JsErrorScriptException = 196609,
JsErrorScriptCompile = 196610,
JsErrorScriptTerminated = 196611,
JsErrorScriptEvalDisabled = 196612,
JsErrorCategoryFatal = 262144,
JsErrorFatal = 262145
} JsErrorCode;public enum JsErrorCode : uint
{
JsNoError = 0,
JsErrorCategoryUsage = 65536,
JsErrorInvalidArgument = 65537,
JsErrorNullArgument = 65538,
JsErrorNoCurrentContext = 65539,
JsErrorInExceptionState = 65540,
JsErrorNotImplemented = 65541,
JsErrorWrongThread = 65542,
JsErrorRuntimeInUse = 65543,
JsErrorBadSerializedScript = 65544,
JsErrorInDisabledState = 65545,
JsErrorCannotDisableExecution = 65546,
JsErrorHeapEnumInProgress = 65547,
JsErrorArgumentNotObject = 65548,
JsErrorInProfileCallback = 65549,
JsErrorInThreadServiceCallback = 65550,
JsErrorCannotSerializeDebugScript = 65551,
JsErrorAlreadyDebuggingContext = 65552,
JsErrorAlreadyProfilingContext = 65553,
JsErrorIdleNotEnabled = 65554,
JsErrorCategoryEngine = 131072,
JsErrorOutOfMemory = 131073,
JsErrorCategoryScript = 196608,
JsErrorScriptException = 196609,
JsErrorScriptCompile = 196610,
JsErrorScriptTerminated = 196611,
JsErrorScriptEvalDisabled = 196612,
JsErrorCategoryFatal = 262144,
JsErrorFatal = 262145,
}Public Enum JsErrorCode As UInteger
JsNoError = 0
JsErrorCategoryUsage = 65536
JsErrorInvalidArgument = 65537
JsErrorNullArgument = 65538
JsErrorNoCurrentContext = 65539
JsErrorInExceptionState = 65540
JsErrorNotImplemented = 65541
JsErrorWrongThread = 65542
JsErrorRuntimeInUse = 65543
JsErrorBadSerializedScript = 65544
JsErrorInDisabledState = 65545
JsErrorCannotDisableExecution = 65546
JsErrorHeapEnumInProgress = 65547
JsErrorArgumentNotObject = 65548
JsErrorInProfileCallback = 65549
JsErrorInThreadServiceCallback = 65550
JsErrorCannotSerializeDebugScript = 65551
JsErrorAlreadyDebuggingContext = 65552
JsErrorAlreadyProfilingContext = 65553
JsErrorIdleNotEnabled = 65554
JsErrorCategoryEngine = 131072
JsErrorOutOfMemory = 131073
JsErrorCategoryScript = 196608
JsErrorScriptException = 196609
JsErrorScriptCompile = 196610
JsErrorScriptTerminated = 196611
JsErrorScriptEvalDisabled = 196612
JsErrorCategoryFatal = 262144
JsErrorFatal = 262145
End Enumimport enum
class JsErrorCode(enum.IntEnum):
JsNoError = 0
JsErrorCategoryUsage = 65536
JsErrorInvalidArgument = 65537
JsErrorNullArgument = 65538
JsErrorNoCurrentContext = 65539
JsErrorInExceptionState = 65540
JsErrorNotImplemented = 65541
JsErrorWrongThread = 65542
JsErrorRuntimeInUse = 65543
JsErrorBadSerializedScript = 65544
JsErrorInDisabledState = 65545
JsErrorCannotDisableExecution = 65546
JsErrorHeapEnumInProgress = 65547
JsErrorArgumentNotObject = 65548
JsErrorInProfileCallback = 65549
JsErrorInThreadServiceCallback = 65550
JsErrorCannotSerializeDebugScript = 65551
JsErrorAlreadyDebuggingContext = 65552
JsErrorAlreadyProfilingContext = 65553
JsErrorIdleNotEnabled = 65554
JsErrorCategoryEngine = 131072
JsErrorOutOfMemory = 131073
JsErrorCategoryScript = 196608
JsErrorScriptException = 196609
JsErrorScriptCompile = 196610
JsErrorScriptTerminated = 196611
JsErrorScriptEvalDisabled = 196612
JsErrorCategoryFatal = 262144
JsErrorFatal = 262145// JsErrorCode
pub const JsNoError: u32 = 0;
pub const JsErrorCategoryUsage: u32 = 65536;
pub const JsErrorInvalidArgument: u32 = 65537;
pub const JsErrorNullArgument: u32 = 65538;
pub const JsErrorNoCurrentContext: u32 = 65539;
pub const JsErrorInExceptionState: u32 = 65540;
pub const JsErrorNotImplemented: u32 = 65541;
pub const JsErrorWrongThread: u32 = 65542;
pub const JsErrorRuntimeInUse: u32 = 65543;
pub const JsErrorBadSerializedScript: u32 = 65544;
pub const JsErrorInDisabledState: u32 = 65545;
pub const JsErrorCannotDisableExecution: u32 = 65546;
pub const JsErrorHeapEnumInProgress: u32 = 65547;
pub const JsErrorArgumentNotObject: u32 = 65548;
pub const JsErrorInProfileCallback: u32 = 65549;
pub const JsErrorInThreadServiceCallback: u32 = 65550;
pub const JsErrorCannotSerializeDebugScript: u32 = 65551;
pub const JsErrorAlreadyDebuggingContext: u32 = 65552;
pub const JsErrorAlreadyProfilingContext: u32 = 65553;
pub const JsErrorIdleNotEnabled: u32 = 65554;
pub const JsErrorCategoryEngine: u32 = 131072;
pub const JsErrorOutOfMemory: u32 = 131073;
pub const JsErrorCategoryScript: u32 = 196608;
pub const JsErrorScriptException: u32 = 196609;
pub const JsErrorScriptCompile: u32 = 196610;
pub const JsErrorScriptTerminated: u32 = 196611;
pub const JsErrorScriptEvalDisabled: u32 = 196612;
pub const JsErrorCategoryFatal: u32 = 262144;
pub const JsErrorFatal: u32 = 262145;// JsErrorCode
const (
JsNoError uint32 = 0
JsErrorCategoryUsage uint32 = 65536
JsErrorInvalidArgument uint32 = 65537
JsErrorNullArgument uint32 = 65538
JsErrorNoCurrentContext uint32 = 65539
JsErrorInExceptionState uint32 = 65540
JsErrorNotImplemented uint32 = 65541
JsErrorWrongThread uint32 = 65542
JsErrorRuntimeInUse uint32 = 65543
JsErrorBadSerializedScript uint32 = 65544
JsErrorInDisabledState uint32 = 65545
JsErrorCannotDisableExecution uint32 = 65546
JsErrorHeapEnumInProgress uint32 = 65547
JsErrorArgumentNotObject uint32 = 65548
JsErrorInProfileCallback uint32 = 65549
JsErrorInThreadServiceCallback uint32 = 65550
JsErrorCannotSerializeDebugScript uint32 = 65551
JsErrorAlreadyDebuggingContext uint32 = 65552
JsErrorAlreadyProfilingContext uint32 = 65553
JsErrorIdleNotEnabled uint32 = 65554
JsErrorCategoryEngine uint32 = 131072
JsErrorOutOfMemory uint32 = 131073
JsErrorCategoryScript uint32 = 196608
JsErrorScriptException uint32 = 196609
JsErrorScriptCompile uint32 = 196610
JsErrorScriptTerminated uint32 = 196611
JsErrorScriptEvalDisabled uint32 = 196612
JsErrorCategoryFatal uint32 = 262144
JsErrorFatal uint32 = 262145
)const
JsNoError = 0;
JsErrorCategoryUsage = 65536;
JsErrorInvalidArgument = 65537;
JsErrorNullArgument = 65538;
JsErrorNoCurrentContext = 65539;
JsErrorInExceptionState = 65540;
JsErrorNotImplemented = 65541;
JsErrorWrongThread = 65542;
JsErrorRuntimeInUse = 65543;
JsErrorBadSerializedScript = 65544;
JsErrorInDisabledState = 65545;
JsErrorCannotDisableExecution = 65546;
JsErrorHeapEnumInProgress = 65547;
JsErrorArgumentNotObject = 65548;
JsErrorInProfileCallback = 65549;
JsErrorInThreadServiceCallback = 65550;
JsErrorCannotSerializeDebugScript = 65551;
JsErrorAlreadyDebuggingContext = 65552;
JsErrorAlreadyProfilingContext = 65553;
JsErrorIdleNotEnabled = 65554;
JsErrorCategoryEngine = 131072;
JsErrorOutOfMemory = 131073;
JsErrorCategoryScript = 196608;
JsErrorScriptException = 196609;
JsErrorScriptCompile = 196610;
JsErrorScriptTerminated = 196611;
JsErrorScriptEvalDisabled = 196612;
JsErrorCategoryFatal = 262144;
JsErrorFatal = 262145;// JsErrorCode
pub const JsNoError: u32 = 0;
pub const JsErrorCategoryUsage: u32 = 65536;
pub const JsErrorInvalidArgument: u32 = 65537;
pub const JsErrorNullArgument: u32 = 65538;
pub const JsErrorNoCurrentContext: u32 = 65539;
pub const JsErrorInExceptionState: u32 = 65540;
pub const JsErrorNotImplemented: u32 = 65541;
pub const JsErrorWrongThread: u32 = 65542;
pub const JsErrorRuntimeInUse: u32 = 65543;
pub const JsErrorBadSerializedScript: u32 = 65544;
pub const JsErrorInDisabledState: u32 = 65545;
pub const JsErrorCannotDisableExecution: u32 = 65546;
pub const JsErrorHeapEnumInProgress: u32 = 65547;
pub const JsErrorArgumentNotObject: u32 = 65548;
pub const JsErrorInProfileCallback: u32 = 65549;
pub const JsErrorInThreadServiceCallback: u32 = 65550;
pub const JsErrorCannotSerializeDebugScript: u32 = 65551;
pub const JsErrorAlreadyDebuggingContext: u32 = 65552;
pub const JsErrorAlreadyProfilingContext: u32 = 65553;
pub const JsErrorIdleNotEnabled: u32 = 65554;
pub const JsErrorCategoryEngine: u32 = 131072;
pub const JsErrorOutOfMemory: u32 = 131073;
pub const JsErrorCategoryScript: u32 = 196608;
pub const JsErrorScriptException: u32 = 196609;
pub const JsErrorScriptCompile: u32 = 196610;
pub const JsErrorScriptTerminated: u32 = 196611;
pub const JsErrorScriptEvalDisabled: u32 = 196612;
pub const JsErrorCategoryFatal: u32 = 262144;
pub const JsErrorFatal: u32 = 262145;const
JsNoError* = 0
JsErrorCategoryUsage* = 65536
JsErrorInvalidArgument* = 65537
JsErrorNullArgument* = 65538
JsErrorNoCurrentContext* = 65539
JsErrorInExceptionState* = 65540
JsErrorNotImplemented* = 65541
JsErrorWrongThread* = 65542
JsErrorRuntimeInUse* = 65543
JsErrorBadSerializedScript* = 65544
JsErrorInDisabledState* = 65545
JsErrorCannotDisableExecution* = 65546
JsErrorHeapEnumInProgress* = 65547
JsErrorArgumentNotObject* = 65548
JsErrorInProfileCallback* = 65549
JsErrorInThreadServiceCallback* = 65550
JsErrorCannotSerializeDebugScript* = 65551
JsErrorAlreadyDebuggingContext* = 65552
JsErrorAlreadyProfilingContext* = 65553
JsErrorIdleNotEnabled* = 65554
JsErrorCategoryEngine* = 131072
JsErrorOutOfMemory* = 131073
JsErrorCategoryScript* = 196608
JsErrorScriptException* = 196609
JsErrorScriptCompile* = 196610
JsErrorScriptTerminated* = 196611
JsErrorScriptEvalDisabled* = 196612
JsErrorCategoryFatal* = 262144
JsErrorFatal* = 262145enum JsErrorCode : uint {
JsNoError = 0,
JsErrorCategoryUsage = 65536,
JsErrorInvalidArgument = 65537,
JsErrorNullArgument = 65538,
JsErrorNoCurrentContext = 65539,
JsErrorInExceptionState = 65540,
JsErrorNotImplemented = 65541,
JsErrorWrongThread = 65542,
JsErrorRuntimeInUse = 65543,
JsErrorBadSerializedScript = 65544,
JsErrorInDisabledState = 65545,
JsErrorCannotDisableExecution = 65546,
JsErrorHeapEnumInProgress = 65547,
JsErrorArgumentNotObject = 65548,
JsErrorInProfileCallback = 65549,
JsErrorInThreadServiceCallback = 65550,
JsErrorCannotSerializeDebugScript = 65551,
JsErrorAlreadyDebuggingContext = 65552,
JsErrorAlreadyProfilingContext = 65553,
JsErrorIdleNotEnabled = 65554,
JsErrorCategoryEngine = 131072,
JsErrorOutOfMemory = 131073,
JsErrorCategoryScript = 196608,
JsErrorScriptException = 196609,
JsErrorScriptCompile = 196610,
JsErrorScriptTerminated = 196611,
JsErrorScriptEvalDisabled = 196612,
JsErrorCategoryFatal = 262144,
JsErrorFatal = 262145,
}#define global JsNoError 0x0
#define global JsErrorCategoryUsage 0x10000
#define global JsErrorInvalidArgument 0x10001
#define global JsErrorNullArgument 0x10002
#define global JsErrorNoCurrentContext 0x10003
#define global JsErrorInExceptionState 0x10004
#define global JsErrorNotImplemented 0x10005
#define global JsErrorWrongThread 0x10006
#define global JsErrorRuntimeInUse 0x10007
#define global JsErrorBadSerializedScript 0x10008
#define global JsErrorInDisabledState 0x10009
#define global JsErrorCannotDisableExecution 0x1000A
#define global JsErrorHeapEnumInProgress 0x1000B
#define global JsErrorArgumentNotObject 0x1000C
#define global JsErrorInProfileCallback 0x1000D
#define global JsErrorInThreadServiceCallback 0x1000E
#define global JsErrorCannotSerializeDebugScript 0x1000F
#define global JsErrorAlreadyDebuggingContext 0x10010
#define global JsErrorAlreadyProfilingContext 0x10011
#define global JsErrorIdleNotEnabled 0x10012
#define global JsErrorCategoryEngine 0x20000
#define global JsErrorOutOfMemory 0x20001
#define global JsErrorCategoryScript 0x30000
#define global JsErrorScriptException 0x30001
#define global JsErrorScriptCompile 0x30002
#define global JsErrorScriptTerminated 0x30003
#define global JsErrorScriptEvalDisabled 0x30004
#define global JsErrorCategoryFatal 0x40000
#define global JsErrorFatal 0x40001