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

  1. ;;; prec.scm -- module definition for scoping/precedence-parsing phase
  2. ;;;
  3. ;;; author :  Sandra Loosemore
  4. ;;; date   :  13 Feb 1992
  5. ;;;
  6.  
  7.  
  8. (define-compilation-unit prec
  9.   (source-filename "$Y2/prec/")
  10.   (require ast haskell-utils)
  11.   (unit scope
  12.     (source-filename "scope.scm"))
  13.   (unit prec-parse
  14.     (source-filename "prec-parse.scm")))
  15.  
  16.  
  17.     
  18.  
  19.