MCPcopy
hub / github.com/google/mtail / BinaryExpr

Struct BinaryExpr

internal/runtime/compiler/ast/ast.go:134–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134type BinaryExpr struct {
135 LHS, RHS Node
136 Op int
137
138 typMu sync.RWMutex
139 typ types.Type
140}
141
142func (n *BinaryExpr) Pos() *position.Position {
143 return position.Merge(n.LHS.Pos(), n.RHS.Pos())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected