Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Ddebug_info.h39 comments_ = new ChunkVector<std::string>(chunk_); in FuncDebugInfo()
44 if (comments_ != nullptr) { in ~FuncDebugInfo()
45 delete comments_; in ~FuncDebugInfo() local
46 comments_ = nullptr; in ~FuncDebugInfo()
62 comments_->push_back(str); in Add()
63 return comments_->size() - 1; in Add()
68 ASSERT(comments_ != nullptr); in GetComment()
69 if (index < comments_->size()) { in GetComment()
70 return comments_->at(index); in GetComment()
84 ChunkVector<std::string> *comments_ {nullptr};