mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05: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.
|
;;;; This module defines abstract syntax tree types used during compilation.
|
||||||
;;;;
|
;;;;
|
||||||
|
|
||||||
(define-library (ast)
|
;(define-library (ast)
|
||||||
;(define-library (scheme cyclone ast)
|
(define-library (scheme cyclone ast)
|
||||||
(import (scheme base)
|
(import (scheme base)
|
||||||
(scheme cyclone util)
|
(scheme cyclone util)
|
||||||
)
|
)
|
||||||
|
|
|
@ -17,8 +17,8 @@
|
||||||
; can write initial analyze, but can't get too far without being able
|
; can write initial analyze, but can't get too far without being able
|
||||||
; to uniquely ID each lambda
|
; to uniquely ID each lambda
|
||||||
|
|
||||||
(define-library (optimize-cps)
|
;(define-library (optimize-cps)
|
||||||
;(define-library (scheme cyclone optimize-cps)
|
(define-library (scheme cyclone optimize-cps)
|
||||||
(import (scheme base)
|
(import (scheme base)
|
||||||
(srfi 69)
|
(srfi 69)
|
||||||
;(scheme char)
|
;(scheme char)
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
(scheme cyclone common)
|
(scheme cyclone common)
|
||||||
(scheme cyclone libraries)
|
(scheme cyclone libraries)
|
||||||
(scheme cyclone macros)
|
(scheme cyclone macros)
|
||||||
|
(scheme cyclone optimize-cps)
|
||||||
(scheme cyclone pretty-print)
|
(scheme cyclone pretty-print)
|
||||||
(scheme cyclone util)
|
(scheme cyclone util)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue