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