Type returns the type of the constant expression.
()
| 541 | |
| 542 | // Type returns the type of the constant expression. |
| 543 | func (e *ExprFRem) Type() types.Type { |
| 544 | // Cache type if not present. |
| 545 | if e.Typ == nil { |
| 546 | e.Typ = e.X.Type() |
| 547 | } |
| 548 | return e.Typ |
| 549 | } |
| 550 | |
| 551 | // Ident returns the identifier associated with the constant expression. |
| 552 | func (e *ExprFRem) Ident() string { |