MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / OperationExpression

Struct OperationExpression

ast/ast.go:128–132  ·  view source on GitHub ↗

OperationExpression - TokenType of Expression that represent 2 other Expressions and conditional operation Example: TRUE OR FALSE

Source from the content-addressed store, hash-verified

126// Example:
127// TRUE OR FALSE
128type OperationExpression struct {
129 Left Expression // another operation, condition or boolean
130 Right Expression // another operation, condition or boolean
131 Operation token.Token // example: token.AND
132}
133
134func (ls OperationExpression) GetIdentifiers() []Identifier {
135 var identifiers []Identifier

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected