Skip to content

Commit

Permalink
Merge pull request #28 from cmsc430/fix-provides
Browse files Browse the repository at this point in the history
Provides for notes.
  • Loading branch information
dvanhorn authored Dec 8, 2024
2 parents ce93008 + 8a6eb7c commit 34d878f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions loot/compile.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
compile-define
compile-match
compile-lambda-define
compile-string ; for notes
copy-env-to-stack
free-vars-to-heap)

Expand Down
4 changes: 3 additions & 1 deletion mug/compile-expr.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#lang racket
(provide compile-e compile-lambda-defines compile-lambda-define free-vars-to-heap)
(provide compile-e compile-lambda-defines compile-lambda-define free-vars-to-heap
; for notes
compile-string compile-symbol)
(require "ast.rkt"
"types.rkt"
"lambdas.rkt"
Expand Down
4 changes: 3 additions & 1 deletion mug/compile.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#lang racket
(provide compile compile-e)
(provide compile compile-e
; for notes
compile-string compile-symbol)
(require "ast.rkt"
"types.rkt"
"lambdas.rkt"
Expand Down

0 comments on commit 34d878f

Please sign in to comment.