export class Declaration { constructor (id, type, initial, isConst) { this.id = id; this.type = type; this.initial = initial; this.isConst = isConst; } }