dump: Add Token::isCast attribute
This commit is contained in:
parent
09944c0b7e
commit
8275f07692
|
@ -5247,6 +5247,8 @@ void Tokenizer::dump(std::ostream &out) const
|
||||||
else if (tok->tokType() == Token::eLogicalOp)
|
else if (tok->tokType() == Token::eLogicalOp)
|
||||||
out << " isLogicalOp=\"true\"";
|
out << " isLogicalOp=\"true\"";
|
||||||
}
|
}
|
||||||
|
if (tok->isCast())
|
||||||
|
out << " isCast=\"true\"";
|
||||||
if (tok->isExternC())
|
if (tok->isExternC())
|
||||||
out << " externLang=\"C\"";
|
out << " externLang=\"C\"";
|
||||||
if (tok->isExpandedMacro())
|
if (tok->isExpandedMacro())
|
||||||
|
|
Loading…
Reference in New Issue