StmtBind is a representation of an assignment, which binds a variable to an expression.
| 191 | // StmtBind is a representation of an assignment, which binds a variable to an |
| 192 | // expression. |
| 193 | type 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. |
| 204 | func (obj *StmtBind) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected