about summary refs log tree commit diff
path: root/utils/autodict_ql/litool.ql
blob: 76f429c16bc2a524580fbbdda8d151505ed9b8a2 (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()