String returns the LLVM syntax representation of the constant expression as a type-value pair.
()
| 36 | // String returns the LLVM syntax representation of the constant expression as a |
| 37 | // type-value pair. |
| 38 | func (e *ExprAdd) String() string { |
| 39 | return fmt.Sprintf("%s %s", e.Type(), e.Ident()) |
| 40 | } |
| 41 | |
| 42 | // Type returns the type of the constant expression. |
| 43 | func (e *ExprAdd) Type() types.Type { |