home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacHaskell 2.2 / tdecl / tdecl.scm < prev    next >
Encoding:
Text File  |  1994-09-27  |  605 b   |  24 lines  |  [TEXT/CCL2]

  1. ;;; -- compilation unit definition for type declaration analysis
  2. ;;;
  3. ;;; author :  John
  4. ;;;
  5.  
  6. (define-compilation-unit tdecl
  7.   (source-filename "$Y2/tdecl/")
  8.   (require global)
  9.   (unit type-declaration-analysis
  10.     (source-filename "type-declaration-analysis.scm"))
  11.   (unit tdecl-utils
  12.     (source-filename "tdecl-utils.scm"))
  13.   (unit alg-syn
  14.     (source-filename "alg-syn.scm"))
  15.   (unit class
  16.     (source-filename "class.scm"))
  17.   (unit instance
  18.     (source-filename "instance.scm"))
  19.   (unit deriving
  20.     (source-filename "deriving.scm"))
  21.   (unit runtime-types
  22.     (source-filename "runtime-types.scm")))
  23.  
  24.