doWhile.js 201 B

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