MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / UnaryExpression

Struct UnaryExpression

pkg/sql/ast/ast.go:1051–1055  ·  view source on GitHub ↗

UnaryExpression represents operations like NOT expr

Source from the content-addressed store, hash-verified

1049
1050// UnaryExpression represents operations like NOT expr
1051type UnaryExpression struct {
1052 Operator UnaryOperator
1053 Expr Expression
1054 Pos models.Location // Source position of the operator (1-based line and column)
1055}
1056
1057func (u *UnaryExpression) expressionNode() {}
1058

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected