mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 01:31:37 +00:00
10 lines
202 B
Plaintext
10 lines
202 B
Plaintext
import cpp
|
|
|
|
class HexOrOctLiteral extends Literal{
|
|
HexOrOctLiteral(){
|
|
(this instanceof HexLiteral) or (this instanceof OctalLiteral)
|
|
}
|
|
}
|
|
|
|
from HexOrOctLiteral lit
|
|
select lit.getValueText() |