Type returns the type of the constant expression.
()
| 181 | |
| 182 | // Type returns the type of the constant expression. |
| 183 | func (e *ExprFSub) Type() types.Type { |
| 184 | // Cache type if not present. |
| 185 | if e.Typ == nil { |
| 186 | e.Typ = e.X.Type() |
| 187 | } |
| 188 | return e.Typ |
| 189 | } |
| 190 | |
| 191 | // Ident returns the identifier associated with the constant expression. |
| 192 | func (e *ExprFSub) Ident() string { |