Ident returns the identifier associated with the constant expression.
()
| 190 | |
| 191 | // Ident returns the identifier associated with the constant expression. |
| 192 | func (e *ExprFSub) Ident() string { |
| 193 | // 'fsub' '(' X=TypeConst ',' Y=TypeConst ')' |
| 194 | return fmt.Sprintf("fsub (%s, %s)", e.X, e.Y) |
| 195 | } |
| 196 | |
| 197 | // ~~~ [ mul ] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 198 |