“use strict”; const idlUtils = require(“../generated/utils”); const HTMLElementImpl = require(“./HTMLElement-impl”).implementation; const HTMLHyperlinkElementUtilsImpl = require(“./HTMLHyperlinkElementUtils-impl”).implementation;

class HTMLAnchorElementImpl extends HTMLElementImpl {

constructor(args, privateData) {
  super(args, privateData);

  this._htmlHyperlinkElementUtilsSetup();
}

get text() {
  return this.textContent;
}
set text(v) {
  this.textContent = v;
}

}

idlUtils.mixin(HTMLAnchorElementImpl.prototype, HTMLHyperlinkElementUtilsImpl.prototype);

module.exports = {

implementation: HTMLAnchorElementImpl

};