(at *expr.AttributeExpr, def any)
| 428 | } |
| 429 | |
| 430 | func initAttributeValidations(at *expr.AttributeExpr, def any) { |
| 431 | resolved := resolvedAliasAttribute(at) |
| 432 | if resolved != at { |
| 433 | initValidations(resolved, def) |
| 434 | } |
| 435 | initValidations(at, def) |
| 436 | } |
| 437 | |
| 438 | func buildPathFromFileServer(s *V2, root *expr.RootExpr, fs *expr.HTTPFileServerExpr) { |
| 439 | for _, path := range fs.RequestPaths { |
no test coverage detected