Show
Ignore:
Timestamp:
12/10/05 13:24:15 (3 years ago)
Author:
gaal
Message:

* Refactor Cxt, Pos, and Prag nodes in Exp to a unified Ann

(for Annotation) type. This should ease work on lexical pragmas.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Compile/Haskell.hs

    r5890 r8153  
    6565    argC1 = compile arg1 
    6666    argC2 = compile arg2 
    67 compile (Cxt _ arg) = compile arg 
    68 compile (Pos _ arg) = compile arg 
     67compile (Ann _ arg) = compile arg 
    6968compile (Val (VInt i)) = [| return (VInt i) |] 
    7069compile (Val (VStr s)) = [| return (VStr s) |]