formalParameter.js 189 B

123456789
  1. export class FormalParameter {
  2. constructor (type, id, dimensions, byRef = false) {
  3. this.type = type;
  4. this.id = id;
  5. this.dimensions = dimensions;
  6. this.byRef = byRef;
  7. }
  8. }