func (c *Const) Uint64() uint64 {
    switch x := c.Value; x.Kind() {
    case exact.Int:
        if u, ok := exact.Uint64Val(x); ok {
            return u