Ident returns the identifier associated with the constant expression.
()
| 98 | |
| 99 | // Ident returns the identifier associated with the constant expression. |
| 100 | func (e *ExprFAdd) Ident() string { |
| 101 | // 'fadd' '(' X=TypeConst ',' Y=TypeConst ')' |
| 102 | return fmt.Sprintf("fadd (%s, %s)", e.X, e.Y) |
| 103 | } |
| 104 | |
| 105 | // ~~~ [ sub ] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 106 |