|
Revision 21673, 313 bytes
(checked in by audreyt, 2 months ago)
|
|
* Import Pugs 6.2.13.11 from Hackage into our source tree.
* Highlights:
- Much faster startup time
- Slightly faster compilation time
(mostly due to refactored Pugs.AST.Internals)
- Portable-to-Win32 readline thanks to Haskeline
|
-
Property svn:mime-type set to
text/plain; charset=UTF-8
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | {-# OPTIONS_GHC -fglasgow-exts -fno-warn-orphans -funbox-strict-fields -fallow-overlapping-instances #-} |
|---|
| 2 | module Pugs.AST where |
|---|
| 3 | import Pugs.Internals |
|---|
| 4 | import Pugs.Types |
|---|
| 5 | import Pugs.Class hiding (Val) |
|---|
| 6 | import {-# SOURCE #-} Pugs.AST.Internals |
|---|
| 7 | |
|---|
| 8 | (./) :: ((:>:) Call a) => Val -> a -> Eval Val |
|---|
| 9 | instance ((:>:) Call) Cxt |
|---|