goog.module('whilestatement.WhileStatement$impl');

const j_l_Object = goog.require('java.lang.Object$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

class WhileStatement extends j_l_Object {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!WhileStatement} */
 static $create__() {
  WhileStatement.$clinit();
  let $instance = new WhileStatement();
  $instance.$ctor__whilestatement_WhileStatement__void();
  return $instance;
 }
 /** @nodts */
 $ctor__whilestatement_WhileStatement__void() {
  this.$ctor__java_lang_Object__void();
 }
 /** @nodts */
 m_test__void() {
  let count = 0;
  while (count < 5) {
   count = count + 1 | 0;
  }
 }
 /** @nodts */
 static $clinit() {
  WhileStatement.$clinit = () =>{};
  WhileStatement.$loadModules();
  j_l_Object.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof WhileStatement;
 }
 
 /** @nodts */
 static $loadModules() {}
}
$Util.$setClassMetadata(WhileStatement, 'whilestatement.WhileStatement');

exports = WhileStatement;

//# sourceMappingURL=WhileStatement.js.map
