declaration.js 244 B

123456789101112
  1. import { Command } from './command';
  2. export class Declaration extends Command {
  3. constructor (id, type, initial, isConst) {
  4. super();
  5. this.id = id;
  6. this.type = type;
  7. this.initial = initial;
  8. this.isConst = isConst;
  9. }
  10. }