Home
last modified time | relevance | path

Searched refs:IsAsyncFunction (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dfunction-kind.h96 inline bool IsAsyncFunction(FunctionKind kind) { in IsAsyncFunction() function
102 return IsGeneratorFunction(kind) || IsAsyncFunction(kind) || IsModule(kind); in IsResumableFunction()
190 return IsAsyncFunction(kind) || in IsAwaitAsIdentifierDisallowed()
Dcontexts-inl.h228 base = IsAsyncFunction(kind) ? ASYNC_GENERATOR_FUNCTION_MAP_INDEX
231 } else if (IsAsyncFunction(kind) || IsAsyncModule(kind)) {
Djs-function.cc693 ? IsAsyncFunction(kind) in SetPrototype()
/third_party/node/deps/v8/src/runtime/
Druntime-generator.cc51 CHECK_IMPLIES(IsAsyncFunction(function->shared().kind()), in RUNTIME_FUNCTION()
/third_party/node/deps/v8/include/
Dv8-value.h200 bool IsAsyncFunction() const;
/third_party/typescript/src/services/refactors/
DextractSymbol.ts227 IsAsyncFunction = 1 << 2, enumerator
602 rangeFacts |= RangeFacts.IsAsyncFunction;
928 if (range.facts & RangeFacts.IsAsyncFunction) {
960 …range.facts & RangeFacts.IsAsyncFunction ? [factory.createToken(SyntaxKind.AsyncKeyword)] : undefi…
999 if (range.facts & RangeFacts.IsAsyncFunction) {
/third_party/node/deps/v8/src/ast/
Dprettyprinter.cc377 if (IsAsyncFunction(function_kind_)) in VisitYieldStar()
Dscopes.cc1792 if (IsAsyncFunction(function_kind)) return "async function"; in Header()
/third_party/node/deps/v8/src/parsing/
Dparser-base.h1059 return IsAsyncFunction(function_state_->kind()); in is_async_function()
4320 if (IsAsyncFunction(kind) && !IsAsyncGeneratorFunction(kind)) { in ParseFunctionBody()
4338 if (IsAsyncFunction(kind)) { in ParseFunctionBody()
4359 } else if (IsAsyncFunction(kind)) { in ParseFunctionBody()
Dparser.cc974 if (IsAsyncFunction(kind)) { in DoParseFunction()
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc68 auto flags = AsyncFunctionBitField::encode(IsAsyncFunction(kind)) | in FunctionKindToFunctionFlags()
/third_party/node/deps/v8/src/debug/
Ddebug.cc1272 if (IsAsyncFunction(shared->kind())) { in PrepareStep()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.cc3666 DCHECK(IsAsyncFunction(info()->literal()->kind()) || in BuildAsyncReturn()
6975 ((IsAsyncFunction(info()->literal()->kind()) && in BuildGeneratorObjectVariableInitialization()
/third_party/node/deps/v8/src/api/
Dapi.cc3691 bool Value::IsAsyncFunction() const { in IsAsyncFunction() function in v8::Value
3695 return i::IsAsyncFunction(func.shared().kind()); in IsAsyncFunction()