String returns the string representation of the array type.
()
| 737 | |
| 738 | // String returns the string representation of the array type. |
| 739 | func (t *ArrayType) String() string { |
| 740 | if len(t.TypeName) > 0 { |
| 741 | return enc.TypeName(t.TypeName) |
| 742 | } |
| 743 | return t.LLString() |
| 744 | } |
| 745 | |
| 746 | // LLString returns the LLVM syntax representation of the definition of the |
| 747 | // type. |