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