mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
6ddd3b0b47
* Fix validate() function to handle errors in embedded anon structs * Implement webhook branch filter See #2025, #3998.
15 lines
241 B
Go
Vendored
15 lines
241 B
Go
Vendored
package syntax
|
|
|
|
import (
|
|
"github.com/gobwas/glob/syntax/ast"
|
|
"github.com/gobwas/glob/syntax/lexer"
|
|
)
|
|
|
|
func Parse(s string) (*ast.Node, error) {
|
|
return ast.Parse(lexer.NewLexer(s))
|
|
}
|
|
|
|
func Special(b byte) bool {
|
|
return lexer.Special(b)
|
|
}
|