You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
294 B
21 lines
294 B
4 years ago
|
// +build gofuzz
|
||
|
|
||
|
package syntax
|
||
|
|
||
|
// Fuzz is the input point for go-fuzz
|
||
|
func Fuzz(data []byte) int {
|
||
|
sdata := string(data)
|
||
|
tree, err := Parse(sdata, RegexOptions(0))
|
||
|
if err != nil {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
// translate it to code
|
||
|
_, err = Write(tree)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
return 1
|
||
|
}
|