goog.module('cast.CastGenerics.Implementor$impl');

const BaseImplementor = goog.require('cast.CastGenerics.BaseImplementor$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

class Implementor extends BaseImplementor {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!Implementor} */
 static $create__() {
  let $instance = new Implementor();
  $instance.$ctor__cast_CastGenerics_Implementor__void();
  return $instance;
 }
 /** @nodts */
 $ctor__cast_CastGenerics_Implementor__void() {
  this.$ctor__cast_CastGenerics_BaseImplementor__void();
 }
 /** @override @nodts */
 m_mA__void() {}
 /** @override @nodts */
 m_mB__void() {}
 /** @nodts */
 static $clinit() {
  Implementor.$clinit = () =>{};
  Implementor.$loadModules();
  BaseImplementor.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof Implementor;
 }
 
 /** @nodts */
 static $loadModules() {}
}
$Util.$setClassMetadata(Implementor, 'cast.CastGenerics$Implementor');

exports = Implementor;

//# sourceMappingURL=CastGenerics$Implementor.js.map
