ArgList.prototype.append = function (value) {
  const values = this._values
  values[values.length] = value
  return this
}