mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-11 16:16:28 -04:00
We're using glamour for rendering the markdown, and I'm interested in using it in other places too
21 lines
294 B
Go
21 lines
294 B
Go
// +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
|
|
}
|