func (c *Const) Int64() int64 {
    switch x := c.Value; x.Kind() {
    case exact.Int:
        if i, ok := exact.Int64Val(x); ok {
            return i