Skip to content

Commit

Permalink
Add class* support
Browse files Browse the repository at this point in the history
Closes #73.
  • Loading branch information
jackfirth authored Sep 25, 2024
1 parent 4abb2bc commit e57ca90
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conventions.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -493,9 +493,8 @@
[("module+") (format-uniform-body/helper 1)]
[("test-case" "test-suite") (format-uniform-body/helper 1)]
[("define-syntax-class" "define-match-expander") (format-uniform-body/helper 1)]
[("class") (format-uniform-body/helper 1 #:require-body? #f)]
[("interface") (format-uniform-body/helper 1 #:require-body? #f)]
[("interface*") (format-uniform-body/helper 2 #:require-body? #f)]
[("class" "interface") (format-uniform-body/helper 1 #:require-body? #f)]
[("class*" "interface*") (format-uniform-body/helper 2 #:require-body? #f)]
[("module" "module*") (format-uniform-body/helper 2)]

[("cond" "case-lambda" "match-lambda" "match-lambda*" "match-lambda**")
Expand Down

0 comments on commit e57ca90

Please sign in to comment.