repeatUntil.js 205 B

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