mirror of
https://github.com/chaisql/chai.git
synced 2025-11-02 11:44:02 +08:00
Allow spaces in functions
This commit is contained in:
@@ -56,7 +56,7 @@ func ParseExpr(s string) (expr.Expr, error) {
|
||||
func MustParseExpr(s string) expr.Expr {
|
||||
e, err := ParseExpr(s)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
panic(fmt.Sprintf("%+v", err))
|
||||
}
|
||||
|
||||
return e
|
||||
|
||||
Reference in New Issue
Block a user