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>
25 lines
565 B
Go
25 lines
565 B
Go
package ini
|
|
|
|
// newExpression will return an expression AST.
|
|
// Expr represents an expression
|
|
//
|
|
// grammar:
|
|
// expr -> string | number
|
|
func newExpression(tok Token) AST {
|
|
return newASTWithRootToken(ASTKindExpr, tok)
|
|
}
|
|
|
|
func newEqualExpr(left AST, tok Token) AST {
|
|
return newASTWithRootToken(ASTKindEqualExpr, tok, left)
|
|
}
|
|
|
|
// EqualExprKey will return a LHS value in the equal expr
|
|
func EqualExprKey(ast AST) string {
|
|
children := ast.GetChildren()
|
|
if len(children) == 0 || ast.Kind != ASTKindEqualExpr {
|
|
return ""
|
|
}
|
|
|
|
return string(children[0].Root.Raw())
|
|
}
|