Ident returns the identifier associated with the constant expression.
()
| 424 | |
| 425 | // Ident returns the identifier associated with the constant expression. |
| 426 | func (e *ExprFDiv) Ident() string { |
| 427 | // 'fdiv' '(' X=TypeConst ',' Y=TypeConst ')' |
| 428 | return fmt.Sprintf("fdiv (%s, %s)", e.X, e.Y) |
| 429 | } |
| 430 | |
| 431 | // ~~~ [ urem ] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 432 |