MCPcopy
hub / github.com/purpleidea/mgmt / StmtBind

Struct StmtBind

lang/ast/structs.go:193–201  ·  view source on GitHub ↗

StmtBind is a representation of an assignment, which binds a variable to an expression.

Source from the content-addressed store, hash-verified

191// StmtBind is a representation of an assignment, which binds a variable to an
192// expression.
193type StmtBind struct {
194 interfaces.Textarea
195
196 data *interfaces.Data
197
198 Ident string
199 Value interfaces.Expr
200 Type *types.Type
201}
202
203// String returns a short representation of this statement.
204func (obj *StmtBind) String() string {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected