doWhile.js 203 B

12345678910111213
  1. import { While } from './while';
  2. export class DoWhile extends While {
  3. constructor(expression, commandBlock) {
  4. super(expression, commandBlock);
  5. }
  6. get testFirst () {
  7. return false;
  8. }
  9. }