dump: Add Token::isCast attribute

This commit is contained in:
Daniel Marjamäki 2022-09-18 12:42:58 +02:00
parent 09944c0b7e
commit 8275f07692
1 changed files with 2 additions and 0 deletions

View File

@ -5247,6 +5247,8 @@ void Tokenizer::dump(std::ostream &out) const
else if (tok->tokType() == Token::eLogicalOp)
out << " isLogicalOp=\"true\"";
}
if (tok->isCast())
out << " isCast=\"true\"";
if (tok->isExternC())
out << " externLang=\"C\"";
if (tok->isExpandedMacro())