mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Proper scheme libraries
This commit is contained in:
parent
ff4e8bf3b9
commit
b163010d21
3 changed files with 5 additions and 4 deletions
|
@ -7,8 +7,8 @@
|
|||
;;;; This module defines abstract syntax tree types used during compilation.
|
||||
;;;;
|
||||
|
||||
(define-library (ast)
|
||||
;(define-library (scheme cyclone ast)
|
||||
;(define-library (ast)
|
||||
(define-library (scheme cyclone ast)
|
||||
(import (scheme base)
|
||||
(scheme cyclone util)
|
||||
)
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
; can write initial analyze, but can't get too far without being able
|
||||
; to uniquely ID each lambda
|
||||
|
||||
(define-library (optimize-cps)
|
||||
;(define-library (scheme cyclone optimize-cps)
|
||||
;(define-library (optimize-cps)
|
||||
(define-library (scheme cyclone optimize-cps)
|
||||
(import (scheme base)
|
||||
(srfi 69)
|
||||
;(scheme char)
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
(scheme cyclone common)
|
||||
(scheme cyclone libraries)
|
||||
(scheme cyclone macros)
|
||||
(scheme cyclone optimize-cps)
|
||||
(scheme cyclone pretty-print)
|
||||
(scheme cyclone util)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue