(f *FuncExpr)
| 1372 | } |
| 1373 | |
| 1374 | func isOnlyNameFunc(f *FuncExpr) bool { |
| 1375 | funcStr := f.Func.String() |
| 1376 | _, ok := onlyNameFunc[funcStr] |
| 1377 | return ok |
| 1378 | } |
| 1379 | |
| 1380 | // Format implements the NodeFormatter interface. |
| 1381 | func (node *FuncExpr) Format(ctx *FmtCtx) { |