We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e70d8 commit 2cee634Copy full SHA for 2cee634
lib/token.cpp
@@ -2726,5 +2726,8 @@ const Token* findLambdaEndScope(const Token* tok) {
2726
const std::string& Token::funcname(const Library& library) const {
2727
if (!mImpl->mFuncName)
2728
mImpl->mFuncName = new std::string(library.getFunctionName(this));
2729
+ const std::string fname = library.getFunctionName(this);
2730
+ std::cout << this << " astParent: " << astParent() << " previous: " << previous() << " " << stringify(stringifyOptions::forDebug()) << " " << fname << std::endl;
2731
+ assert(*mImpl->mFuncName == fname);
2732
return *mImpl->mFuncName;
2733
}
0 commit comments