Home
last modified time | relevance | path

Searched refs:DestructuringIterator (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/base/
Diterators.h78 class DestructuringIterator : public Iterator {
80 explicit DestructuringIterator(PandaGen *pg, const ir::AstNode *node);
82 DEFAULT_COPY_SEMANTIC(DestructuringIterator);
83 DEFAULT_MOVE_SEMANTIC(DestructuringIterator);
84 ~DestructuringIterator() = default;
107 class DestructuringRestIterator : public DestructuringIterator {
109 …explicit DestructuringRestIterator(const DestructuringIterator &iterator) : DestructuringIterator(… in DestructuringRestIterator()
Diterators.cpp146 DestructuringIterator::DestructuringIterator(PandaGen *pg, const ir::AstNode *node) in DestructuringIterator() function in panda::es2panda::compiler::DestructuringIterator
153 void DestructuringIterator::Step(Label *doneTarget) const in Step()
186 void DestructuringIterator::OnIterDone([[maybe_unused]] Label *doneTarget) const in OnIterDone()
Ddestructuring.cpp33 const DestructuringIterator &destIterator, bool isDeclaration) in GenRestElement()
74 DestructuringIterator iterator(pg, array); in GenArray()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DdynamicContext.h156 explicit DestructuringIteratorContext(PandaGen *pg, const DestructuringIterator &iterator);
166 const DestructuringIterator &GetIterator() const in GetIterator()
179 const DestructuringIterator &iterator_;
DdynamicContext.cpp139 …gIteratorContext::DestructuringIteratorContext(PandaGen *pg, const DestructuringIterator &iterator) in DestructuringIteratorContext()