blob: b7f4bf33e10e3e2c6f293089874ad5118aa083a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import cpp
class HexOrOctLiteral extends Literal{
HexOrOctLiteral(){
(this instanceof HexLiteral) or (this instanceof OctalLiteral)
}
}
from HexOrOctLiteral lit
select lit.getValueText()
|