“use strict”;

const conversions = require(“webidl-conversions”); const utils = require(“./utils.js”); const impl = utils.implSymbol;

function FormData() {

const args = [];
for (let i = 0; i < arguments.length && i < 1; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}

iface.setup(this, args);

}

FormData.prototype.append = function append(name, value) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 2) {
  throw new TypeError("Failed to execute 'append' on 'FormData': 2 arguments required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 3; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
if (args[2] !== undefined) {
args[2] = conversions["USVString"](args[2]);
}
return this[impl].append.apply(this[impl], args);

};

FormData.prototype.delete = function _(name) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 1) {
  throw new TypeError("Failed to execute 'delete' on 'FormData': 1 argument required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 1; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
return this[impl].delete.apply(this[impl], args);

};

FormData.prototype.get = function get(name) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 1) {
  throw new TypeError("Failed to execute 'get' on 'FormData': 1 argument required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 1; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
return utils.tryWrapperForImpl(this[impl].get.apply(this[impl], args));

};

FormData.prototype.getAll = function getAll(name) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 1) {
  throw new TypeError("Failed to execute 'getAll' on 'FormData': 1 argument required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 1; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
return utils.tryWrapperForImpl(this[impl].getAll.apply(this[impl], args));

};

FormData.prototype.has = function has(name) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 1) {
  throw new TypeError("Failed to execute 'has' on 'FormData': 1 argument required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 1; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
return this[impl].has.apply(this[impl], args);

};

FormData.prototype.set = function set(name, value) {

if (!this || !module.exports.is(this)) {
  throw new TypeError("Illegal invocation");
}
if (arguments.length < 2) {
  throw new TypeError("Failed to execute 'set' on 'FormData': 2 arguments required, but only " + arguments.length + " present.");
}
const args = [];
for (let i = 0; i < arguments.length && i < 3; ++i) {
  args[i] = utils.tryImplForWrapper(arguments[i]);
}
args[0] = conversions["USVString"](args[0]);
if (args[2] !== undefined) {
args[2] = conversions["USVString"](args[2]);
}
return this[impl].set.apply(this[impl], args);

};

FormData.prototype.toString = function () {

if (this === FormData.prototype) {
  return "[object FormDataPrototype]";
}
return this[impl].toString();

};

const iface = {

mixedInto: [],
is(obj) {
  if (obj) {
    if (obj[impl] instanceof Impl.implementation) {
      return true;
    }
    for (let i = 0; i < module.exports.mixedInto.length; ++i) {
      if (obj instanceof module.exports.mixedInto[i]) {
        return true;
      }
    }
  }
  return false;
},
isImpl(obj) {
  if (obj) {
    if (obj instanceof Impl.implementation) {
      return true;
    }

    const wrapper = utils.wrapperForImpl(obj);
    for (let i = 0; i < module.exports.mixedInto.length; ++i) {
      if (wrapper instanceof module.exports.mixedInto[i]) {
        return true;
      }
    }
  }
  return false;
},
create(constructorArgs, privateData) {
  let obj = Object.create(FormData.prototype);
  this.setup(obj, constructorArgs, privateData);
  return obj;
},
createImpl(constructorArgs, privateData) {
  let obj = Object.create(FormData.prototype);
  this.setup(obj, constructorArgs, privateData);
  return utils.implForWrapper(obj);
},
_internalSetup(obj) {
},
setup(obj, constructorArgs, privateData) {
  if (!privateData) privateData = {};
  privateData.wrapper = obj;

  this._internalSetup(obj);

  obj[impl] = new Impl.implementation(constructorArgs, privateData);
  obj[impl][utils.wrapperSymbol] = obj;
},
interface: FormData,
expose: {
  Window: { FormData: FormData },
  Worker: { FormData: FormData }
}

}; module.exports = iface;

const Impl = require(“../xhr/FormData-impl.js”);