Home
last modified time | relevance | path

Searched refs:searchName (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/es2panda/typescript/core/
H A DdestructuringContext.h72 virtual Type *NextInferedType([[maybe_unused]] const util::StringView &searchName, bool throwError) = 0;
103 Type *NextInferedType([[maybe_unused]] const util::StringView &searchName, bool throwError) override;
124 Type *NextInferedType([[maybe_unused]] const util::StringView &searchName, bool throwError) override;
H A DdestructuringContext.cpp232 Type *ArrayDestructuringContext::NextInferedType([[maybe_unused]] const util::StringView &searchName, bool throwError) in NextInferedType() argument
622 Type *ObjectDestructuringContext::NextInferedType([[maybe_unused]] const util::StringView &searchName, bool throwError) in NextInferedType() argument
625 checker_->GetPropertyOfType(inferedType_, searchName, !throwError, binder::VariableFlags::INFERED_IN_PATTERN); in NextInferedType()
641 checker_->ThrowTypeError({"Property ", searchName, " does not exist on type ", inferedType_, "."}, in NextInferedType()
/arkcompiler/ets_frontend/ets2panda/checker/ts/
H A DdestructuringContext.h83 virtual Type *NextInferredType([[maybe_unused]] const util::StringView &searchName, bool throwError) = 0;
113 Type *NextInferredType([[maybe_unused]] const util::StringView &searchName, bool throwError) override;
130 Type *NextInferredType([[maybe_unused]] const util::StringView &searchName, bool throwError) override;
H A DdestructuringContext.cpp237 Type *ArrayDestructuringContext::NextInferredType([[maybe_unused]] const util::StringView &searchName, bool throwError) in NextInferredType() argument
627 Type *ObjectDestructuringContext::NextInferredType([[maybe_unused]] const util::StringView &searchName, bool throwError) in NextInferredType() argument
629 varbinder::Variable *prop = checker_->GetPropertyOfType(inferredType_, searchName, !throwError, in NextInferredType()
646 checker_->ThrowTypeError({"Property ", searchName, " does not exist on type ", inferredType_, "."}, in NextInferredType()
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
H A DIrViewer.js900 let searchName;
902 searchName = n.ir.bytecode;
905 searchName = n.ir.typedop;
908 searchName = n.ir.op;
910 if (n.ir.id === v || searchName.indexOf(v) >= 0 || (isRegExp(v) && searchName.match(v))) {
/arkcompiler/ets_frontend/ets2panda/checker/
H A DETSAnalyzer.cpp2683 auto searchName = in Check() local
2690 if (searchName.Empty()) { in Check()
2691 searchName = expr->Right()->Name(); in Check()
2694 baseType->AsETSObjectType()->GetProperty(searchName, checker::PropertySearchFlags::SEARCH_DECL); in Check()
2702 if (expr->Right()->Name().Is(searchName.Mutf8()) && prop->Declaration()->Node()->HasExportAlias()) { in Check()
2703 checker->LogTypeError({"Cannot find imported element '", searchName, "' exported with alias"}, in Check()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H A Dobject.cpp1852 auto searchName = target->GetReExportAliasValue(memberExpr->Property()->AsIdentifier()->Name());
1853 auto *prop = target->GetProperty(searchName, searchFlag);

Completed in 10 milliseconds