Home
last modified time | relevance | path

Searched refs:tempNode (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_sampling.cpp197 std::unique_ptr<struct SamplingNode> tempNode = std::make_unique<struct SamplingNode>(); in FindOrAddNode() local
198 tempNode->callFrameInfo_ = GetMethodInfo(methodKey); in FindOrAddNode()
199 tempNode->id_ = CreateNodeId(); in FindOrAddNode()
200 node->children_.emplace(methodKey, std::move(tempNode)); in FindOrAddNode()
/arkcompiler/ets_frontend/ts2panda/src/expression/
DobjectLiteralExpression.ts295 let tempNode: ts.Node = node;
297 tempNode = findInnerExprOfParenthesis(node);
300 if (ts.isFunctionLike(tempNode) || ts.isClassLike(tempNode)) {
301 let funcOrClassNode = <ts.FunctionLikeDeclaration | ts.ClassLikeDeclaration>tempNode;