Home
last modified time | relevance | path

Searched refs:exportStr (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeRecorder.cpp293 int64_t TypeRecorder::GetExportType(const std::string &exportStr) const in GetExportType()
295 return FindValue(exportType_, exportStr, PRIMITIVETYPE_ANY); in GetExportType()
298 void TypeRecorder::SetExportType(const std::string &exportStr, int64_t exportIndex) in SetExportType() argument
300 exportType_[exportStr] = exportIndex; in SetExportType()
301 ASSERT(GetExportType(exportStr) == exportIndex); in SetExportType()
DtypeRecorder.h102 int64_t GetExportType(const std::string &exportStr) const;
103 void SetExportType(const std::string &exportStr, int64_t exportIndex);
/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_info_collector.cpp601 const JSHandle<EcmaString> &exportStr) in CheckExportNameAndClassType() argument
608 if (!EcmaStringAccessor::StringsAreEqual(*exportStr, valueString)) { in CheckExportNameAndClassType()
Dbytecode_info_collector.h807 …bool CheckExportNameAndClassType(const CString &recordName, const JSHandle<EcmaString> &exportStr);