Type returns the type of the constant expression.
()
| 317 | |
| 318 | // Type returns the type of the constant expression. |
| 319 | func (e *ExprUDiv) Type() types.Type { |
| 320 | // Cache type if not present. |
| 321 | if e.Typ == nil { |
| 322 | e.Typ = e.X.Type() |
| 323 | } |
| 324 | return e.Typ |
| 325 | } |
| 326 | |
| 327 | // Ident returns the identifier associated with the constant expression. |
| 328 | func (e *ExprUDiv) Ident() string { |