NewSelect creates a select expression where a field value is selected from an operand. Example: msg.field_name - operand: msg - field: field_name
(operand ast.Expr, field string)
| 450 | // - operand: msg |
| 451 | // - field: field_name |
| 452 | func (opt *optimizerExprFactory) NewSelect(operand ast.Expr, field string) ast.Expr { |
| 453 | return opt.fac.NewSelect(opt.nextID(), operand, field) |
| 454 | } |
| 455 | |
| 456 | // NewStruct creates a new typed struct value with an set of field initializations. |
| 457 | // |
no test coverage detected