/dports/lang/spidermonkey60/firefox-60.9.0/js/src/vm/ |
H A D | GeneratorObject.h | 77 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 84 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 92 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 99 return getFixedSlot(EXPRESSION_STACK_SLOT).isObject(); in hasExpressionStack() 115 return getFixedSlot(NEWTARGET_SLOT).isObject(); in isConstructing() 117 const Value& newTarget() const { return getFixedSlot(NEWTARGET_SLOT); } in newTarget() 135 return getFixedSlot(YIELD_AND_AWAIT_INDEX_SLOT).toInt32() == in isRunning() 139 return getFixedSlot(YIELD_AND_AWAIT_INDEX_SLOT).toInt32() == in isClosing() 149 return getFixedSlot(YIELD_AND_AWAIT_INDEX_SLOT).toInt32() < in isSuspended() 172 return getFixedSlot(YIELD_AND_AWAIT_INDEX_SLOT).toInt32(); in yieldAndAwaitIndex() [all …]
|
H A D | AsyncIteration.h | 83 getFixedSlot(Slot_CompletionKind).toInt32()); in completionKind() 86 return getFixedSlot(Slot_CompletionValue); in completionValue() 115 return static_cast<State>(getFixedSlot(Slot_State).toInt32()); in state() 127 return getFixedSlot(Slot_QueueOrRequest).isNull() || in isSingleQueue() 128 getFixedSlot(Slot_QueueOrRequest) in isSingleQueue() 133 return getFixedSlot(Slot_QueueOrRequest).isNull(); in isSingleQueueEmpty() 142 return &getFixedSlot(Slot_QueueOrRequest) in singleQueueRequest() 176 JS::Value generatorVal() const { return getFixedSlot(Slot_Generator); } in generatorVal() 178 return &getFixedSlot(Slot_Generator).toObject().as<GeneratorObject>(); in generatorObj() 216 return getFixedSlot(Slot_CachedRequest).isObject(); in hasCachedRequest() [all …]
|
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/vm/ |
H A D | GeneratorObject.h | 77 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 84 return getFixedSlot(SCOPE_CHAIN_SLOT).toObject(); in scopeChain() 91 return getFixedSlot(ARGS_OBJ_SLOT).isObject(); in hasArgsObj() 94 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 101 return getFixedSlot(EXPRESSION_STACK_SLOT).isObject(); in hasExpressionStack() 114 return getFixedSlot(NEWTARGET_SLOT).isObject(); in isConstructing() 117 return getFixedSlot(NEWTARGET_SLOT); in newTarget() 137 return getFixedSlot(YIELD_INDEX_SLOT).toInt32() == YIELD_INDEX_RUNNING; in isRunning() 148 return getFixedSlot(YIELD_INDEX_SLOT).toInt32() < YIELD_INDEX_CLOSING; in isSuspended() 167 return getFixedSlot(YIELD_INDEX_SLOT).toInt32(); in yieldIndex() [all …]
|
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/vm/ |
H A D | GeneratorObject.h | 77 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 84 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 91 return getFixedSlot(ARGS_OBJ_SLOT).isObject(); in hasArgsObj() 94 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 101 return getFixedSlot(EXPRESSION_STACK_SLOT).isObject(); in hasExpressionStack() 114 return getFixedSlot(NEWTARGET_SLOT).isObject(); in isConstructing() 117 return getFixedSlot(NEWTARGET_SLOT); in newTarget() 137 return getFixedSlot(YIELD_INDEX_SLOT).toInt32() == YIELD_INDEX_RUNNING; in isRunning() 148 return getFixedSlot(YIELD_INDEX_SLOT).toInt32() < YIELD_INDEX_CLOSING; in isSuspended() 167 return getFixedSlot(YIELD_INDEX_SLOT).toInt32(); in yieldIndex() [all …]
|
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/vm/ |
H A D | AsyncIteration.h | 93 getFixedSlot(Slot_CompletionKind).toInt32()); in completionKind() 96 return getFixedSlot(Slot_CompletionValue); in completionValue() 99 return &getFixedSlot(Slot_Promise).toObject().as<PromiseObject>(); in promise() 152 return static_cast<State>(getFixedSlot(Slot_State).toInt32()); in state() 163 return getFixedSlot(Slot_QueueOrRequest).isNull() || in isSingleQueue() 164 getFixedSlot(Slot_QueueOrRequest) in isSingleQueue() 169 return getFixedSlot(Slot_QueueOrRequest).isNull(); in isSingleQueueEmpty() 178 return &getFixedSlot(Slot_QueueOrRequest) in singleQueueRequest() 184 return &getFixedSlot(Slot_QueueOrRequest).toObject().as<ListObject>(); in queue() 251 return getFixedSlot(Slot_CachedRequest).isObject(); in hasCachedRequest() [all …]
|
H A D | GeneratorObject.h | 62 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 69 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 75 bool hasArgsObj() const { return getFixedSlot(ARGS_OBJ_SLOT).isObject(); } in hasArgsObj() 77 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 84 return getFixedSlot(EXPRESSION_STACK_SLOT).isObject(); in hasExpressionStack() 90 return getFixedSlot(EXPRESSION_STACK_SLOT).toObject().as<ArrayObject>(); in expressionStack() 110 return getFixedSlot(RESUME_INDEX_SLOT).isUndefined(); in isBeforeInitialYield() 118 Value resumeIndex = getFixedSlot(RESUME_INDEX_SLOT); in isSuspended() 131 getFixedSlot(RESUME_INDEX_SLOT).isUndefined()); in setResumeIndex() 145 return getFixedSlot(RESUME_INDEX_SLOT).toInt32(); in resumeIndex() [all …]
|
/dports/www/firefox/firefox-99.0/js/src/vm/ |
H A D | AsyncIteration.h | 347 getFixedSlot(Slot_CompletionKind).toInt32()); in completionKind() 350 return getFixedSlot(Slot_CompletionValue); in completionValue() 353 return &getFixedSlot(Slot_Promise).toObject().as<PromiseObject>(); in promise() 406 return static_cast<State>(getFixedSlot(Slot_State).toInt32()); in state() 417 return getFixedSlot(Slot_QueueOrRequest).isNull() || in isSingleQueue() 418 getFixedSlot(Slot_QueueOrRequest) in isSingleQueue() 423 return getFixedSlot(Slot_QueueOrRequest).isNull(); in isSingleQueueEmpty() 432 return &getFixedSlot(Slot_QueueOrRequest) in singleQueueRequest() 438 return &getFixedSlot(Slot_QueueOrRequest).toObject().as<ListObject>(); in queue() 505 return getFixedSlot(Slot_CachedRequest).isObject(); in hasCachedRequest() [all …]
|
H A D | GeneratorObject.h | 73 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 80 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 86 bool hasArgsObj() const { return getFixedSlot(ARGS_OBJ_SLOT).isObject(); } in hasArgsObj() 88 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 95 return getFixedSlot(STACK_STORAGE_SLOT).isObject(); in hasStackStorage() 101 return getFixedSlot(STACK_STORAGE_SLOT).toObject().as<ArrayObject>(); in stackStorage() 124 return getFixedSlot(RESUME_INDEX_SLOT).isUndefined(); in isBeforeInitialYield() 132 Value resumeIndex = getFixedSlot(RESUME_INDEX_SLOT); in isSuspended() 145 getFixedSlot(RESUME_INDEX_SLOT).isUndefined()); in setResumeIndex() 159 return getFixedSlot(RESUME_INDEX_SLOT).toInt32(); in resumeIndex() [all …]
|
/dports/www/firefox-esr/firefox-91.8.0/js/src/vm/ |
H A D | GeneratorObject.h | 70 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 77 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 83 bool hasArgsObj() const { return getFixedSlot(ARGS_OBJ_SLOT).isObject(); } in hasArgsObj() 85 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 92 return getFixedSlot(STACK_STORAGE_SLOT).isObject(); in hasStackStorage() 98 return getFixedSlot(STACK_STORAGE_SLOT).toObject().as<ArrayObject>(); in stackStorage() 121 return getFixedSlot(RESUME_INDEX_SLOT).isUndefined(); in isBeforeInitialYield() 129 Value resumeIndex = getFixedSlot(RESUME_INDEX_SLOT); in isSuspended() 142 getFixedSlot(RESUME_INDEX_SLOT).isUndefined()); in setResumeIndex() 156 return getFixedSlot(RESUME_INDEX_SLOT).toInt32(); in resumeIndex() [all …]
|
H A D | AsyncIteration.h | 362 getFixedSlot(Slot_CompletionKind).toInt32()); in completionKind() 365 return getFixedSlot(Slot_CompletionValue); in completionValue() 368 return &getFixedSlot(Slot_Promise).toObject().as<PromiseObject>(); in promise() 421 return static_cast<State>(getFixedSlot(Slot_State).toInt32()); in state() 432 return getFixedSlot(Slot_QueueOrRequest).isNull() || in isSingleQueue() 433 getFixedSlot(Slot_QueueOrRequest) in isSingleQueue() 438 return getFixedSlot(Slot_QueueOrRequest).isNull(); in isSingleQueueEmpty() 447 return &getFixedSlot(Slot_QueueOrRequest) in singleQueueRequest() 453 return &getFixedSlot(Slot_QueueOrRequest).toObject().as<ListObject>(); in queue() 520 return getFixedSlot(Slot_CachedRequest).isObject(); in hasCachedRequest() [all …]
|
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/vm/ |
H A D | GeneratorObject.h | 70 return getFixedSlot(CALLEE_SLOT).toObject().as<JSFunction>(); in callee() 77 return getFixedSlot(ENV_CHAIN_SLOT).toObject(); in environmentChain() 83 bool hasArgsObj() const { return getFixedSlot(ARGS_OBJ_SLOT).isObject(); } in hasArgsObj() 85 return getFixedSlot(ARGS_OBJ_SLOT).toObject().as<ArgumentsObject>(); in argsObj() 92 return getFixedSlot(STACK_STORAGE_SLOT).isObject(); in hasStackStorage() 98 return getFixedSlot(STACK_STORAGE_SLOT).toObject().as<ArrayObject>(); in stackStorage() 121 return getFixedSlot(RESUME_INDEX_SLOT).isUndefined(); in isBeforeInitialYield() 129 Value resumeIndex = getFixedSlot(RESUME_INDEX_SLOT); in isSuspended() 142 getFixedSlot(RESUME_INDEX_SLOT).isUndefined()); in setResumeIndex() 156 return getFixedSlot(RESUME_INDEX_SLOT).toInt32(); in resumeIndex() [all …]
|
H A D | AsyncIteration.h | 362 getFixedSlot(Slot_CompletionKind).toInt32()); in completionKind() 365 return getFixedSlot(Slot_CompletionValue); in completionValue() 368 return &getFixedSlot(Slot_Promise).toObject().as<PromiseObject>(); in promise() 421 return static_cast<State>(getFixedSlot(Slot_State).toInt32()); in state() 432 return getFixedSlot(Slot_QueueOrRequest).isNull() || in isSingleQueue() 433 getFixedSlot(Slot_QueueOrRequest) in isSingleQueue() 438 return getFixedSlot(Slot_QueueOrRequest).isNull(); in isSingleQueueEmpty() 447 return &getFixedSlot(Slot_QueueOrRequest) in singleQueueRequest() 453 return &getFixedSlot(Slot_QueueOrRequest).toObject().as<ListObject>(); in queue() 520 return getFixedSlot(Slot_CachedRequest).isObject(); in hasCachedRequest() [all …]
|
/dports/www/firefox-esr/firefox-91.8.0/js/src/builtin/streams/ |
H A D | PullIntoDescriptor.h | 39 return &getFixedSlot(Slot_buffer).toObject().as<ArrayBufferObject>(); in buffer() 44 JSObject* ctor() { return getFixedSlot(Slot_Ctor).toObjectOrNull(); } in ctor() 46 return getFixedSlot(Slot_ByteOffset).toInt32(); in byteOffset() 49 return getFixedSlot(Slot_ByteLength).toInt32(); in byteLength() 52 return getFixedSlot(Slot_BytesFilled).toInt32(); in bytesFilled() 58 return getFixedSlot(Slot_ElementSize).toInt32(); in elementSize() 61 int32_t n = getFixedSlot(Slot_ReaderType).toInt32(); in readerType()
|
H A D | WritableStreamDefaultController.h | 90 return &getFixedSlot(Slot_Stream).toObject().as<WritableStream>(); in stream() 96 JS::Value underlyingSink() const { return getFixedSlot(Slot_UnderlyingSink); } in underlyingSink() 125 JS::Value writeMethod() const { return getFixedSlot(Slot_WriteMethod); } in writeMethod() 131 JS::Value closeMethod() const { return getFixedSlot(Slot_CloseMethod); } in closeMethod() 137 JS::Value abortMethod() const { return getFixedSlot(Slot_AbortMethod); } in abortMethod() 144 return getFixedSlot(Slot_StrategyHWM).toDouble(); in strategyHWM() 150 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 156 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 174 return &getFixedSlot(Slot_Controller) in controller()
|
H A D | ReadableStreamController.h | 80 return &getFixedSlot(Slot_Stream).toObject().as<ReadableStream>(); in stream() 86 return getFixedSlot(Slot_UnderlyingSource); in underlyingSource() 91 JS::Value pullMethod() const { return getFixedSlot(Slot_PullMethod); } in pullMethod() 95 JS::Value cancelMethod() const { return getFixedSlot(Slot_CancelMethod); } in cancelMethod() 123 return getFixedSlot(Slot_StrategyHWM).toNumber(); in strategyHWM() 128 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 172 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 203 JS::Value byobRequest() const { return getFixedSlot(Slot_BYOBRequest); } in byobRequest() 208 return &getFixedSlot(Slot_PendingPullIntos).toObject().as<ListObject>(); in pendingPullIntos() 211 return getFixedSlot(Slot_AutoAllocateSize); in autoAllocateChunkSize() [all …]
|
H A D | TeeState.h | 73 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 111 return getFixedSlot(Slot_Reason1); in reason1() 116 return getFixedSlot(Slot_Reason2); in reason2() 120 return &getFixedSlot(Slot_CancelPromise).toObject().as<PromiseObject>(); in cancelPromise() 125 &getFixedSlot(Slot_Branch1) in branch1() 138 &getFixedSlot(Slot_Branch2) in branch2()
|
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/builtin/streams/ |
H A D | PullIntoDescriptor.h | 39 return &getFixedSlot(Slot_buffer).toObject().as<ArrayBufferObject>(); in buffer() 44 JSObject* ctor() { return getFixedSlot(Slot_Ctor).toObjectOrNull(); } in ctor() 46 return getFixedSlot(Slot_ByteOffset).toInt32(); in byteOffset() 49 return getFixedSlot(Slot_ByteLength).toInt32(); in byteLength() 52 return getFixedSlot(Slot_BytesFilled).toInt32(); in bytesFilled() 58 return getFixedSlot(Slot_ElementSize).toInt32(); in elementSize() 61 int32_t n = getFixedSlot(Slot_ReaderType).toInt32(); in readerType()
|
H A D | WritableStreamDefaultController.h | 90 return &getFixedSlot(Slot_Stream).toObject().as<WritableStream>(); in stream() 96 JS::Value underlyingSink() const { return getFixedSlot(Slot_UnderlyingSink); } in underlyingSink() 125 JS::Value writeMethod() const { return getFixedSlot(Slot_WriteMethod); } in writeMethod() 131 JS::Value closeMethod() const { return getFixedSlot(Slot_CloseMethod); } in closeMethod() 137 JS::Value abortMethod() const { return getFixedSlot(Slot_AbortMethod); } in abortMethod() 144 return getFixedSlot(Slot_StrategyHWM).toDouble(); in strategyHWM() 150 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 156 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 174 return &getFixedSlot(Slot_Controller) in controller()
|
H A D | ReadableStreamController.h | 80 return &getFixedSlot(Slot_Stream).toObject().as<ReadableStream>(); in stream() 86 return getFixedSlot(Slot_UnderlyingSource); in underlyingSource() 91 JS::Value pullMethod() const { return getFixedSlot(Slot_PullMethod); } in pullMethod() 95 JS::Value cancelMethod() const { return getFixedSlot(Slot_CancelMethod); } in cancelMethod() 123 return getFixedSlot(Slot_StrategyHWM).toNumber(); in strategyHWM() 128 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 172 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 203 JS::Value byobRequest() const { return getFixedSlot(Slot_BYOBRequest); } in byobRequest() 208 return &getFixedSlot(Slot_PendingPullIntos).toObject().as<ListObject>(); in pendingPullIntos() 211 return getFixedSlot(Slot_AutoAllocateSize); in autoAllocateChunkSize() [all …]
|
/dports/www/firefox/firefox-99.0/js/src/builtin/streams/ |
H A D | PullIntoDescriptor.h | 39 return &getFixedSlot(Slot_buffer).toObject().as<ArrayBufferObject>(); in buffer() 44 JSObject* ctor() { return getFixedSlot(Slot_Ctor).toObjectOrNull(); } in ctor() 46 return getFixedSlot(Slot_ByteOffset).toInt32(); in byteOffset() 49 return getFixedSlot(Slot_ByteLength).toInt32(); in byteLength() 52 return getFixedSlot(Slot_BytesFilled).toInt32(); in bytesFilled() 58 return getFixedSlot(Slot_ElementSize).toInt32(); in elementSize() 61 int32_t n = getFixedSlot(Slot_ReaderType).toInt32(); in readerType()
|
H A D | ReadableStreamController.h | 80 return &getFixedSlot(Slot_Stream).toObject().as<ReadableStream>(); in stream() 86 return getFixedSlot(Slot_UnderlyingSource); in underlyingSource() 91 JS::Value pullMethod() const { return getFixedSlot(Slot_PullMethod); } in pullMethod() 95 JS::Value cancelMethod() const { return getFixedSlot(Slot_CancelMethod); } in cancelMethod() 123 return getFixedSlot(Slot_StrategyHWM).toNumber(); in strategyHWM() 128 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 172 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 203 JS::Value byobRequest() const { return getFixedSlot(Slot_BYOBRequest); } in byobRequest() 208 return &getFixedSlot(Slot_PendingPullIntos).toObject().as<ListObject>(); in pendingPullIntos() 211 return getFixedSlot(Slot_AutoAllocateSize); in autoAllocateChunkSize() [all …]
|
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/builtin/streams/ |
H A D | PullIntoDescriptor.h | 39 return &getFixedSlot(Slot_buffer).toObject().as<ArrayBufferObject>(); in buffer() 44 JSObject* ctor() { return getFixedSlot(Slot_Ctor).toObjectOrNull(); } in ctor() 46 return getFixedSlot(Slot_ByteOffset).toInt32(); in byteOffset() 49 return getFixedSlot(Slot_ByteLength).toInt32(); in byteLength() 52 return getFixedSlot(Slot_BytesFilled).toInt32(); in bytesFilled() 58 return getFixedSlot(Slot_ElementSize).toInt32(); in elementSize() 61 int32_t n = getFixedSlot(Slot_ReaderType).toInt32(); in readerType()
|
H A D | WritableStreamDefaultController.h | 90 return &getFixedSlot(Slot_Stream).toObject().as<WritableStream>(); in stream() 96 JS::Value underlyingSink() const { return getFixedSlot(Slot_UnderlyingSink); } in underlyingSink() 125 JS::Value writeMethod() const { return getFixedSlot(Slot_WriteMethod); } in writeMethod() 131 JS::Value closeMethod() const { return getFixedSlot(Slot_CloseMethod); } in closeMethod() 137 JS::Value abortMethod() const { return getFixedSlot(Slot_AbortMethod); } in abortMethod() 144 return getFixedSlot(Slot_StrategyHWM).toDouble(); in strategyHWM() 150 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 156 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 174 return &getFixedSlot(Slot_Controller) in controller()
|
H A D | ReadableStreamController.h | 80 return &getFixedSlot(Slot_Stream).toObject().as<ReadableStream>(); in stream() 86 return getFixedSlot(Slot_UnderlyingSource); in underlyingSource() 91 JS::Value pullMethod() const { return getFixedSlot(Slot_PullMethod); } in pullMethod() 95 JS::Value cancelMethod() const { return getFixedSlot(Slot_CancelMethod); } in cancelMethod() 123 return getFixedSlot(Slot_StrategyHWM).toNumber(); in strategyHWM() 128 uint32_t flags() const { return getFixedSlot(Slot_Flags).toInt32(); } in flags() 172 JS::Value strategySize() const { return getFixedSlot(Slot_StrategySize); } in strategySize() 203 JS::Value byobRequest() const { return getFixedSlot(Slot_BYOBRequest); } in byobRequest() 208 return &getFixedSlot(Slot_PendingPullIntos).toObject().as<ListObject>(); in pendingPullIntos() 211 return getFixedSlot(Slot_AutoAllocateSize); in autoAllocateChunkSize() [all …]
|
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/builtin/ |
H A D | Promise.h | 51 int32_t flags = getFixedSlot(PromiseSlot_Flags).toInt32(); in state() 62 return getFixedSlot(PromiseSlot_ReactionsOrResult); in value() 66 return getFixedSlot(PromiseSlot_ReactionsOrResult); in reason() 74 double allocationTime() { return getFixedSlot(PromiseSlot_AllocationTime).toNumber(); } in allocationTime() 75 double resolutionTime() { return getFixedSlot(PromiseSlot_ResolutionTime).toNumber(); } in resolutionTime() 77 return getFixedSlot(PromiseSlot_AllocationSite).toObjectOrNull(); in allocationSite() 80 return getFixedSlot(PromiseSlot_ResolutionSite).toObjectOrNull(); in resolutionSite() 91 return !(getFixedSlot(PromiseSlot_Flags).toInt32() & PROMISE_FLAG_HANDLED); in isUnhandled() 95 int32_t flags = getFixedSlot(PromiseSlot_Flags).toInt32(); in markAsReported()
|