String returns the LLVM syntax representation of the constant expression as a type-value pair.
()
| 84 | // String returns the LLVM syntax representation of the constant expression as a |
| 85 | // type-value pair. |
| 86 | func (e *ExprFAdd) String() string { |
| 87 | return fmt.Sprintf("%s %s", e.Type(), e.Ident()) |
| 88 | } |
| 89 | |
| 90 | // Type returns the type of the constant expression. |
| 91 | func (e *ExprFAdd) Type() types.Type { |