declaration.js 176 B

123456789
  1. export class Declaration {
  2. constructor (id, type, initial, isConst) {
  3. this.id = id;
  4. this.type = type;
  5. this.initial = initial;
  6. this.isConst = isConst;
  7. }
  8. }