Skip to content

Commit

Permalink
Rewrite 6251 part III (Fix #1092) (#1097)
Browse files Browse the repository at this point in the history
* Simplify qual div worksheet

* Rewrite AMT 6251 part 3

Add stub Schedule D Tax Worksheet to fix references

* Fix two lingering errors per review
  • Loading branch information
zakpatterson authored Apr 9, 2022
1 parent dd2c822 commit 567180f
Show file tree
Hide file tree
Showing 6 changed files with 319 additions and 376 deletions.
8 changes: 8 additions & 0 deletions src/forms/Y2021/irsForms/F1040Attachment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,12 @@ abstract class F1040Attachment extends Form {
}
}

export abstract class Worksheet {
f1040: F1040

constructor(f1040: F1040) {
this.f1040 = f1040
}
}

export default F1040Attachment
3 changes: 3 additions & 0 deletions src/forms/Y2021/irsForms/F2555.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export default class F2555 extends F1040Attachment {
tag: FormTag = 'f2555'
sequenceIndex = 34

// TODO - Required from SDCapitalGainWorksheet
l3 = (): number | undefined => undefined

// TODO - required from 6251
l36 = (): number => 0

Expand Down
Loading

0 comments on commit 567180f

Please sign in to comment.