mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 15:06:25 +01:00
5b7e8d1309
* lib/backup/s3remote: update AWS SDK to v2 * Update lib/backup/s3remote/s3.go Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com> * lib/backup/s3remote: refactor error handling Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
26 lines
503 B
Go
26 lines
503 B
Go
package ini
|
|
|
|
// Walk will traverse the AST using the v, the Visitor.
|
|
func Walk(tree []AST, v Visitor) error {
|
|
for _, node := range tree {
|
|
switch node.Kind {
|
|
case ASTKindExpr,
|
|
ASTKindExprStatement:
|
|
|
|
if err := v.VisitExpr(node); err != nil {
|
|
return err
|
|
}
|
|
case ASTKindStatement,
|
|
ASTKindCompletedSectionStatement,
|
|
ASTKindNestedSectionStatement,
|
|
ASTKindCompletedNestedSectionStatement:
|
|
|
|
if err := v.VisitStatement(node); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|