Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsOptionalType.cpp43 auto found = checker->NodeCache().find(this); in GetType()
44 if (found != checker->NodeCache().end()) { in GetType()
49 checker->NodeCache().insert({this, type}); in GetType()
DtsParenthesizedType.cpp43 auto found = checker->NodeCache().find(this); in GetType()
44 if (found != checker->NodeCache().end()) { in GetType()
49 checker->NodeCache().insert({this, type}); in GetType()
DtsLiteralType.cpp43 auto found = checker->NodeCache().find(this); in GetType()
44 if (found != checker->NodeCache().end()) { in GetType()
49 checker->NodeCache().insert({this, type}); in GetType()
DtsRestType.cpp43 auto found = checker->NodeCache().find(this); in GetType()
44 if (found != checker->NodeCache().end()) { in GetType()
49 checker->NodeCache().insert({this, type}); in GetType()
DtsTypeQuery.cpp43 auto found = checker->NodeCache().find(this); in GetType()
44 if (found != checker->NodeCache().end()) { in GetType()
50 checker->NodeCache().insert({this, type}); in GetType()
DtsUnionType.cpp49 auto found = checker->NodeCache().find(this); in GetType()
50 if (found != checker->NodeCache().end()) { in GetType()
62 checker->NodeCache().insert({this, type}); in GetType()
DtsTypeReference.cpp56 auto found = checker->NodeCache().find(this); in GetType()
57 if (found != checker->NodeCache().end()) { in GetType()
75 checker->NodeCache().insert({this, type}); in GetType()
DtsTypeLiteral.cpp56 auto found = checker->NodeCache().find(this); in GetType()
57 if (found != checker->NodeCache().end()) { in GetType()
65 checker->NodeCache().insert({this, type}); in GetType()
DtsIndexedAccessType.cpp63 auto found = checker->NodeCache().find(this); in GetType()
64 if (found != checker->NodeCache().end()) { in GetType()
72 checker->NodeCache().insert({this, resolved}); in GetType()
DtsIndexSignature.cpp50 auto found = checker->NodeCache().find(this); in Check()
51 if (found != checker->NodeCache().end()) { in Check()
69 checker->NodeCache().insert({this, placeholder}); in Check()
DtsSignatureDeclaration.cpp57 auto found = checker->NodeCache().find(this); in Check()
58 if (found != checker->NodeCache().end()) { in Check()
92 checker->NodeCache().insert({this, placeholderObj}); in Check()
DtsTupleType.cpp45 auto found = checker->NodeCache().find(this); in GetType()
46 if (found != checker->NodeCache().end()) { in GetType()
113 checker->NodeCache().insert({this, tupleType}); in GetType()
/arkcompiler/ets_frontend/es2panda/ir/statements/
DvariableDeclarator.cpp121 auto found = checker->NodeCache().find(this); in Check()
122 if (found != checker->NodeCache().end()) { in Check()
128 checker->NodeCache().insert({this, nullptr}); in Check()
138 checker->NodeCache().insert({this, nullptr}); in Check()
148 checker->NodeCache().insert({this, nullptr}); in Check()
/arkcompiler/ets_frontend/es2panda/typescript/
Dchecker.h320 std::unordered_map<const ir::AstNode *, Type *> &NodeCache() in NodeCache() function