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