case []{1}:
    a := object.([]{1})
    if isSet {
      a[index] = value.({1})
    } else {
      if index >= len(a) {
        if panics {
          panic(fmt.Sprintf("objx: Index %d is out of range because the []{1} only contains %d items.", index, len(a)))
        }
        return nil
      } else {
        return a[index]
      }
    }