blob: 76f429c16bc2a524580fbbdda8d151505ed9b8a2 [file] [log] [blame]
import cpp
class HexOrOctLiteral extends Literal{
HexOrOctLiteral(){
(this instanceof HexLiteral) or (this instanceof OctalLiteral)
}
}
from HexOrOctLiteral lit
select lit.getValueText()