0a423f45df6097eebd498a6b4987e9a04b37bc5d
[ghc-hetmet.git] / ghc / compiler / parser / Parser.y.pp
1 --                                                              -*-haskell-*-
2 -- ---------------------------------------------------------------------------
3 -- (c) The University of Glasgow 1997-2003
4 ---
5 -- The GHC grammar.
6 --
7 -- Author(s): Simon Marlow, Sven Panne 1997, 1998, 1999
8 -- ---------------------------------------------------------------------------
9
10 {
11 module Parser ( parseModule, parseStmt, parseIdentifier, parseType,
12                 parseHeader ) where
13
14 #define INCLUDE #include 
15 INCLUDE "HsVersions.h"
16
17 import HsSyn
18 import RdrHsSyn
19 import HscTypes         ( IsBootInterface, DeprecTxt )
20 import Lexer
21 import RdrName
22 import TysWiredIn       ( unitTyCon, unitDataCon, tupleTyCon, tupleCon, nilDataCon,
23                           listTyCon_RDR, parrTyCon_RDR, consDataCon_RDR )
24 import Type             ( funTyCon )
25 import ForeignCall      ( Safety(..), CExportSpec(..), CLabelString,
26                           CCallConv(..), CCallTarget(..), defaultCCallConv
27                         )
28 import OccName          ( varName, dataName, tcClsName, tvName )
29 import DataCon          ( DataCon, dataConName )
30 import SrcLoc           ( Located(..), unLoc, getLoc, noLoc, combineSrcSpans,
31                           SrcSpan, combineLocs, srcLocFile, 
32                           mkSrcLoc, mkSrcSpan )
33 import Module
34 import StaticFlags      ( opt_SccProfilingOn )
35 import Type             ( Kind, mkArrowKind, liftedTypeKind )
36 import BasicTypes       ( Boxity(..), Fixity(..), FixityDirection(..), IPName(..),
37                           Activation(..), defaultInlineSpec )
38 import OrdList
39
40 import FastString
41 import Maybes           ( orElse )
42 import Outputable
43 import GLAEXTS
44 }
45
46 {-
47 -----------------------------------------------------------------------------
48 Conflicts: 36 shift/reduce (1.25)
49
50 10 for abiguity in 'if x then y else z + 1'             [State 178]
51         (shift parses as 'if x then y else (z + 1)', as per longest-parse rule)
52         10 because op might be: : - ! * . `x` VARSYM CONSYM QVARSYM QCONSYM
53
54 1 for ambiguity in 'if x then y else z :: T'            [State 178]
55         (shift parses as 'if x then y else (z :: T)', as per longest-parse rule)
56
57 4 for ambiguity in 'if x then y else z -< e'            [State 178]
58         (shift parses as 'if x then y else (z -< T)', as per longest-parse rule)
59         There are four such operators: -<, >-, -<<, >>-
60
61
62 2 for ambiguity in 'case v of { x :: T -> T ... } '     [States 11, 253]
63         Which of these two is intended?
64           case v of
65             (x::T) -> T         -- Rhs is T
66     or
67           case v of
68             (x::T -> T) -> ..   -- Rhs is ...
69
70 10 for ambiguity in 'e :: a `b` c'.  Does this mean     [States 11, 253]
71         (e::a) `b` c, or 
72         (e :: (a `b` c))
73     As well as `b` we can have !, VARSYM, QCONSYM, and CONSYM, hence 5 cases
74     Same duplication between states 11 and 253 as the previous case
75
76 1 for ambiguity in 'let ?x ...'                         [State 329]
77         the parser can't tell whether the ?x is the lhs of a normal binding or
78         an implicit binding.  Fortunately resolving as shift gives it the only
79         sensible meaning, namely the lhs of an implicit binding.
80
81 1 for ambiguity in '{-# RULES "name" [ ... #-}          [State 382]
82         we don't know whether the '[' starts the activation or not: it
83         might be the start of the declaration with the activation being
84         empty.  --SDM 1/4/2002
85
86 6 for conflicts between `fdecl' and `fdeclDEPRECATED',  [States 393,394]
87         which are resolved correctly, and moreover, 
88         should go away when `fdeclDEPRECATED' is removed.
89
90 1 for ambiguity in '{-# RULES "name" forall = ... #-}'  [State 474]
91         since 'forall' is a valid variable name, we don't know whether
92         to treat a forall on the input as the beginning of a quantifier
93         or the beginning of the rule itself.  Resolving to shift means
94         it's always treated as a quantifier, hence the above is disallowed.
95         This saves explicitly defining a grammar for the rule lhs that
96         doesn't include 'forall'.
97
98 -- ---------------------------------------------------------------------------
99 -- Adding location info
100
101 This is done in a stylised way using the three macros below, L0, L1
102 and LL.  Each of these macros can be thought of as having type
103
104    L0, L1, LL :: a -> Located a
105
106 They each add a SrcSpan to their argument.
107
108    L0   adds 'noSrcSpan', used for empty productions
109
110    L1   for a production with a single token on the lhs.  Grabs the SrcSpan
111         from that token.
112
113    LL   for a production with >1 token on the lhs.  Makes up a SrcSpan from
114         the first and last tokens.
115
116 These suffice for the majority of cases.  However, we must be
117 especially careful with empty productions: LL won't work if the first
118 or last token on the lhs can represent an empty span.  In these cases,
119 we have to calculate the span using more of the tokens from the lhs, eg.
120
121         | 'newtype' tycl_hdr '=' newconstr deriving
122                 { L (comb3 $1 $4 $5)
123                     (mkTyData NewType (unLoc $2) [$4] (unLoc $5)) }
124
125 We provide comb3 and comb4 functions which are useful in such cases.
126
127 Be careful: there's no checking that you actually got this right, the
128 only symptom will be that the SrcSpans of your syntax will be
129 incorrect.
130
131 /*
132  * We must expand these macros *before* running Happy, which is why this file is
133  * Parser.y.pp rather than just Parser.y - we run the C pre-processor first.
134  */
135 #define L0   L noSrcSpan
136 #define L1   sL (getLoc $1)
137 #define LL   sL (comb2 $1 $>)
138
139 -- -----------------------------------------------------------------------------
140
141 -}
142
143 %token
144  '_'            { L _ ITunderscore }            -- Haskell keywords
145  'as'           { L _ ITas }
146  'case'         { L _ ITcase }          
147  'class'        { L _ ITclass } 
148  'data'         { L _ ITdata } 
149  'default'      { L _ ITdefault }
150  'deriving'     { L _ ITderiving }
151  'do'           { L _ ITdo }
152  'else'         { L _ ITelse }
153  'hiding'       { L _ IThiding }
154  'if'           { L _ ITif }
155  'import'       { L _ ITimport }
156  'in'           { L _ ITin }
157  'infix'        { L _ ITinfix }
158  'infixl'       { L _ ITinfixl }
159  'infixr'       { L _ ITinfixr }
160  'instance'     { L _ ITinstance }
161  'let'          { L _ ITlet }
162  'module'       { L _ ITmodule }
163  'newtype'      { L _ ITnewtype }
164  'of'           { L _ ITof }
165  'qualified'    { L _ ITqualified }
166  'then'         { L _ ITthen }
167  'type'         { L _ ITtype }
168  'where'        { L _ ITwhere }
169  '_scc_'        { L _ ITscc }         -- ToDo: remove
170
171  'forall'       { L _ ITforall }                        -- GHC extension keywords
172  'foreign'      { L _ ITforeign }
173  'export'       { L _ ITexport }
174  'label'        { L _ ITlabel } 
175  'dynamic'      { L _ ITdynamic }
176  'safe'         { L _ ITsafe }
177  'threadsafe'   { L _ ITthreadsafe }
178  'unsafe'       { L _ ITunsafe }
179  'mdo'          { L _ ITmdo }
180  'stdcall'      { L _ ITstdcallconv }
181  'ccall'        { L _ ITccallconv }
182  'dotnet'       { L _ ITdotnet }
183  'proc'         { L _ ITproc }          -- for arrow notation extension
184  'rec'          { L _ ITrec }           -- for arrow notation extension
185
186  '{-# INLINE'             { L _ (ITinline_prag _) }
187  '{-# SPECIALISE'         { L _ ITspec_prag }
188  '{-# SPECIALISE_INLINE'  { L _ (ITspec_inline_prag _) }
189  '{-# SOURCE'      { L _ ITsource_prag }
190  '{-# RULES'       { L _ ITrules_prag }
191  '{-# CORE'        { L _ ITcore_prag }              -- hdaume: annotated core
192  '{-# SCC'         { L _ ITscc_prag }
193  '{-# DEPRECATED'  { L _ ITdeprecated_prag }
194  '{-# UNPACK'      { L _ ITunpack_prag }
195  '#-}'             { L _ ITclose_prag }
196
197  '..'           { L _ ITdotdot }                        -- reserved symbols
198  ':'            { L _ ITcolon }
199  '::'           { L _ ITdcolon }
200  '='            { L _ ITequal }
201  '\\'           { L _ ITlam }
202  '|'            { L _ ITvbar }
203  '<-'           { L _ ITlarrow }
204  '->'           { L _ ITrarrow }
205  '@'            { L _ ITat }
206  '~'            { L _ ITtilde }
207  '=>'           { L _ ITdarrow }
208  '-'            { L _ ITminus }
209  '!'            { L _ ITbang }
210  '*'            { L _ ITstar }
211  '-<'           { L _ ITlarrowtail }            -- for arrow notation
212  '>-'           { L _ ITrarrowtail }            -- for arrow notation
213  '-<<'          { L _ ITLarrowtail }            -- for arrow notation
214  '>>-'          { L _ ITRarrowtail }            -- for arrow notation
215  '.'            { L _ ITdot }
216
217  '{'            { L _ ITocurly }                        -- special symbols
218  '}'            { L _ ITccurly }
219  '{|'           { L _ ITocurlybar }
220  '|}'           { L _ ITccurlybar }
221  vocurly        { L _ ITvocurly } -- virtual open curly (from layout)
222  vccurly        { L _ ITvccurly } -- virtual close curly (from layout)
223  '['            { L _ ITobrack }
224  ']'            { L _ ITcbrack }
225  '[:'           { L _ ITopabrack }
226  ':]'           { L _ ITcpabrack }
227  '('            { L _ IToparen }
228  ')'            { L _ ITcparen }
229  '(#'           { L _ IToubxparen }
230  '#)'           { L _ ITcubxparen }
231  '(|'           { L _ IToparenbar }
232  '|)'           { L _ ITcparenbar }
233  ';'            { L _ ITsemi }
234  ','            { L _ ITcomma }
235  '`'            { L _ ITbackquote }
236
237  VARID          { L _ (ITvarid    _) }          -- identifiers
238  CONID          { L _ (ITconid    _) }
239  VARSYM         { L _ (ITvarsym   _) }
240  CONSYM         { L _ (ITconsym   _) }
241  QVARID         { L _ (ITqvarid   _) }
242  QCONID         { L _ (ITqconid   _) }
243  QVARSYM        { L _ (ITqvarsym  _) }
244  QCONSYM        { L _ (ITqconsym  _) }
245
246  IPDUPVARID     { L _ (ITdupipvarid   _) }              -- GHC extension
247  IPSPLITVARID   { L _ (ITsplitipvarid _) }              -- GHC extension
248
249  CHAR           { L _ (ITchar     _) }
250  STRING         { L _ (ITstring   _) }
251  INTEGER        { L _ (ITinteger  _) }
252  RATIONAL       { L _ (ITrational _) }
253                     
254  PRIMCHAR       { L _ (ITprimchar   _) }
255  PRIMSTRING     { L _ (ITprimstring _) }
256  PRIMINTEGER    { L _ (ITprimint    _) }
257  PRIMFLOAT      { L _ (ITprimfloat  _) }
258  PRIMDOUBLE     { L _ (ITprimdouble _) }
259                     
260 -- Template Haskell 
261 '[|'            { L _ ITopenExpQuote  }       
262 '[p|'           { L _ ITopenPatQuote  }      
263 '[t|'           { L _ ITopenTypQuote  }      
264 '[d|'           { L _ ITopenDecQuote  }      
265 '|]'            { L _ ITcloseQuote    }
266 TH_ID_SPLICE    { L _ (ITidEscape _)  }     -- $x
267 '$('            { L _ ITparenEscape   }     -- $( exp )
268 TH_VAR_QUOTE    { L _ ITvarQuote      }     -- 'x
269 TH_TY_QUOTE     { L _ ITtyQuote       }      -- ''T
270
271 %monad { P } { >>= } { return }
272 %lexer { lexer } { L _ ITeof }
273 %name parseModule module
274 %name parseStmt   maybe_stmt
275 %name parseIdentifier  identifier
276 %name parseType ctype
277 %partial parseHeader header
278 %tokentype { Located Token }
279 %%
280
281 -----------------------------------------------------------------------------
282 -- Identifiers; one of the entry points
283 identifier :: { Located RdrName }
284         : qvar                          { $1 }
285         | qcon                          { $1 }
286         | qvarop                        { $1 }
287         | qconop                        { $1 }
288
289 -----------------------------------------------------------------------------
290 -- Module Header
291
292 -- The place for module deprecation is really too restrictive, but if it
293 -- was allowed at its natural place just before 'module', we get an ugly
294 -- s/r conflict with the second alternative. Another solution would be the
295 -- introduction of a new pragma DEPRECATED_MODULE, but this is not very nice,
296 -- either, and DEPRECATED is only expected to be used by people who really
297 -- know what they are doing. :-)
298
299 module  :: { Located (HsModule RdrName) }
300         : 'module' modid maybemoddeprec maybeexports 'where' body 
301                 {% fileSrcSpan >>= \ loc ->
302                    return (L loc (HsModule (Just $2) $4 (fst $6) (snd $6) $3)) }
303         | missing_module_keyword top close
304                 {% fileSrcSpan >>= \ loc ->
305                    return (L loc (HsModule Nothing Nothing 
306                                 (fst $2) (snd $2) Nothing)) }
307
308 missing_module_keyword :: { () }
309         : {- empty -}                           {% pushCurrentContext }
310
311 maybemoddeprec :: { Maybe DeprecTxt }
312         : '{-# DEPRECATED' STRING '#-}'         { Just (getSTRING $2) }
313         |  {- empty -}                          { Nothing }
314
315 body    :: { ([LImportDecl RdrName], [LHsDecl RdrName]) }
316         :  '{'            top '}'               { $2 }
317         |      vocurly    top close             { $2 }
318
319 top     :: { ([LImportDecl RdrName], [LHsDecl RdrName]) }
320         : importdecls                           { (reverse $1,[]) }
321         | importdecls ';' cvtopdecls            { (reverse $1,$3) }
322         | cvtopdecls                            { ([],$1) }
323
324 cvtopdecls :: { [LHsDecl RdrName] }
325         : topdecls                              { cvTopDecls $1 }
326
327 -----------------------------------------------------------------------------
328 -- Module declaration & imports only
329
330 header  :: { Located (HsModule RdrName) }
331         : 'module' modid maybemoddeprec maybeexports 'where' header_body
332                 {% fileSrcSpan >>= \ loc ->
333                    return (L loc (HsModule (Just $2) $4 $6 [] $3)) }
334         | missing_module_keyword importdecls
335                 {% fileSrcSpan >>= \ loc ->
336                    return (L loc (HsModule Nothing Nothing $2 [] Nothing)) }
337
338 header_body :: { [LImportDecl RdrName] }
339         :  '{'            importdecls           { $2 }
340         |      vocurly    importdecls           { $2 }
341
342 -----------------------------------------------------------------------------
343 -- The Export List
344
345 maybeexports :: { Maybe [LIE RdrName] }
346         :  '(' exportlist ')'                   { Just $2 }
347         |  {- empty -}                          { Nothing }
348
349 exportlist :: { [LIE RdrName] }
350         :  exportlist ',' export                { $3 : $1 }
351         |  exportlist ','                       { $1 }
352         |  export                               { [$1]  }
353         |  {- empty -}                          { [] }
354
355    -- No longer allow things like [] and (,,,) to be exported
356    -- They are built in syntax, always available
357 export  :: { LIE RdrName }
358         :  qvar                         { L1 (IEVar (unLoc $1)) }
359         |  oqtycon                      { L1 (IEThingAbs (unLoc $1)) }
360         |  oqtycon '(' '..' ')'         { LL (IEThingAll (unLoc $1)) }
361         |  oqtycon '(' ')'              { LL (IEThingWith (unLoc $1) []) }
362         |  oqtycon '(' qcnames ')'      { LL (IEThingWith (unLoc $1) (reverse $3)) }
363         |  'module' modid               { LL (IEModuleContents (unLoc $2)) }
364
365 qcnames :: { [RdrName] }
366         :  qcnames ',' qcname                   { unLoc $3 : $1 }
367         |  qcname                               { [unLoc $1]  }
368
369 qcname  :: { Located RdrName }  -- Variable or data constructor
370         :  qvar                                 { $1 }
371         |  qcon                                 { $1 }
372
373 -----------------------------------------------------------------------------
374 -- Import Declarations
375
376 -- import decls can be *empty*, or even just a string of semicolons
377 -- whereas topdecls must contain at least one topdecl.
378
379 importdecls :: { [LImportDecl RdrName] }
380         : importdecls ';' importdecl            { $3 : $1 }
381         | importdecls ';'                       { $1 }
382         | importdecl                            { [ $1 ] }
383         | {- empty -}                           { [] }
384
385 importdecl :: { LImportDecl RdrName }
386         : 'import' maybe_src optqualified modid maybeas maybeimpspec 
387                 { L (comb4 $1 $4 $5 $6) (ImportDecl $4 $2 $3 (unLoc $5) (unLoc $6)) }
388
389 maybe_src :: { IsBootInterface }
390         : '{-# SOURCE' '#-}'                    { True }
391         | {- empty -}                           { False }
392
393 optqualified :: { Bool }
394         : 'qualified'                           { True  }
395         | {- empty -}                           { False }
396
397 maybeas :: { Located (Maybe Module) }
398         : 'as' modid                            { LL (Just (unLoc $2)) }
399         | {- empty -}                           { noLoc Nothing }
400
401 maybeimpspec :: { Located (Maybe (Bool, [LIE RdrName])) }
402         : impspec                               { L1 (Just (unLoc $1)) }
403         | {- empty -}                           { noLoc Nothing }
404
405 impspec :: { Located (Bool, [LIE RdrName]) }
406         :  '(' exportlist ')'                   { LL (False, reverse $2) }
407         |  'hiding' '(' exportlist ')'          { LL (True,  reverse $3) }
408
409 -----------------------------------------------------------------------------
410 -- Fixity Declarations
411
412 prec    :: { Int }
413         : {- empty -}           { 9 }
414         | INTEGER               {% checkPrecP (L1 (fromInteger (getINTEGER $1))) }
415
416 infix   :: { Located FixityDirection }
417         : 'infix'                               { L1 InfixN  }
418         | 'infixl'                              { L1 InfixL  }
419         | 'infixr'                              { L1 InfixR }
420
421 ops     :: { Located [Located RdrName] }
422         : ops ',' op                            { LL ($3 : unLoc $1) }
423         | op                                    { L1 [$1] }
424
425 -----------------------------------------------------------------------------
426 -- Top-Level Declarations
427
428 topdecls :: { OrdList (LHsDecl RdrName) }       -- Reversed
429         : topdecls ';' topdecl          { $1 `appOL` $3 }
430         | topdecls ';'                  { $1 }
431         | topdecl                       { $1 }
432
433 topdecl :: { OrdList (LHsDecl RdrName) }
434         : tycl_decl                     { unitOL (L1 (TyClD (unLoc $1))) }
435         | 'instance' inst_type where
436                 { let (binds,sigs) = cvBindsAndSigs (unLoc $3)
437                   in unitOL (L (comb3 $1 $2 $3) (InstD (InstDecl $2 binds sigs))) }
438         | 'default' '(' comma_types0 ')'        { unitOL (LL $ DefD (DefaultDecl $3)) }
439         | 'foreign' fdecl                       { unitOL (LL (unLoc $2)) }
440         | '{-# DEPRECATED' deprecations '#-}'   { $2 }
441         | '{-# RULES' rules '#-}'               { $2 }
442         | '$(' exp ')'                          { unitOL (LL $ SpliceD (SpliceDecl $2)) }
443         | decl                                  { unLoc $1 }
444
445 tycl_decl :: { LTyClDecl RdrName }
446         : 'type' type '=' ctype 
447                 -- Note type on the left of the '='; this allows
448                 -- infix type constructors to be declared
449                 -- 
450                 -- Note ctype, not sigtype, on the right
451                 -- We allow an explicit for-all but we don't insert one
452                 -- in   type Foo a = (b,b)
453                 -- Instead we just say b is out of scope
454                 {% do { (tc,tvs) <- checkSynHdr $2
455                       ; return (LL (TySynonym tc tvs $4)) } }
456
457         | data_or_newtype tycl_hdr constrs deriving
458                 { L (comb4 $1 $2 $3 $4) -- We need the location on tycl_hdr 
459                                         -- in case constrs and deriving are both empty
460                     (mkTyData (unLoc $1) (unLoc $2) Nothing (reverse (unLoc $3)) (unLoc $4)) }
461
462         | data_or_newtype tycl_hdr opt_kind_sig 
463                  'where' gadt_constrlist
464                  deriving
465                 { L (comb4 $1 $2 $4 $5)
466                     (mkTyData (unLoc $1) (unLoc $2) $3 (reverse (unLoc $5)) (unLoc $6)) }
467
468         | 'class' tycl_hdr fds where
469                 { let 
470                         (binds,sigs) = cvBindsAndSigs (unLoc $4)
471                   in
472                   L (comb4 $1 $2 $3 $4) (mkClassDecl (unLoc $2) (unLoc $3) sigs 
473                                           binds) }
474
475 data_or_newtype :: { Located NewOrData }
476         : 'data'        { L1 DataType }
477         | 'newtype'     { L1 NewType }
478
479 opt_kind_sig :: { Maybe Kind }
480         :                               { Nothing }
481         | '::' kind                     { Just $2 }
482
483 -- tycl_hdr parses the header of a type or class decl,
484 -- which takes the form
485 --      T a b
486 --      Eq a => T a
487 --      (Eq a, Ord b) => T a b
488 -- Rather a lot of inlining here, else we get reduce/reduce errors
489 tycl_hdr :: { Located (LHsContext RdrName, Located RdrName, [LHsTyVarBndr RdrName]) }
490         : context '=>' type             {% checkTyClHdr $1         $3 >>= return.LL }
491         | type                          {% checkTyClHdr (noLoc []) $1 >>= return.L1 }
492
493 -----------------------------------------------------------------------------
494 -- Nested declarations
495
496 decls   :: { Located (OrdList (LHsDecl RdrName)) }      -- Reversed
497         : decls ';' decl                { LL (unLoc $1 `appOL` unLoc $3) }
498         | decls ';'                     { LL (unLoc $1) }
499         | decl                          { $1 }
500         | {- empty -}                   { noLoc nilOL }
501
502
503 decllist :: { Located (OrdList (LHsDecl RdrName)) }     -- Reversed
504         : '{'            decls '}'      { LL (unLoc $2) }
505         |     vocurly    decls close    { $2 }
506
507 where   :: { Located (OrdList (LHsDecl RdrName)) }      -- Reversed
508                                 -- No implicit parameters
509         : 'where' decllist              { LL (unLoc $2) }
510         | {- empty -}                   { noLoc nilOL }
511
512 binds   ::  { Located (HsLocalBinds RdrName) }          -- May have implicit parameters
513         : decllist                      { L1 (HsValBinds (cvBindGroup (unLoc $1))) }
514         | '{'            dbinds '}'     { LL (HsIPBinds (IPBinds (unLoc $2) emptyLHsBinds)) }
515         |     vocurly    dbinds close   { L (getLoc $2) (HsIPBinds (IPBinds (unLoc $2) emptyLHsBinds)) }
516
517 wherebinds :: { Located (HsLocalBinds RdrName) }        -- May have implicit parameters
518         : 'where' binds                 { LL (unLoc $2) }
519         | {- empty -}                   { noLoc emptyLocalBinds }
520
521
522 -----------------------------------------------------------------------------
523 -- Transformation Rules
524
525 rules   :: { OrdList (LHsDecl RdrName) }        -- Reversed
526         :  rules ';' rule                       { $1 `snocOL` $3 }
527         |  rules ';'                            { $1 }
528         |  rule                                 { unitOL $1 }
529         |  {- empty -}                          { nilOL }
530
531 rule    :: { LHsDecl RdrName }
532         : STRING activation rule_forall infixexp '=' exp
533              { LL $ RuleD (HsRule (getSTRING $1) 
534                                   ($2 `orElse` AlwaysActive) 
535                                   $3 $4 $6) }
536
537 activation :: { Maybe Activation } 
538         : {- empty -}                           { Nothing }
539         | explicit_activation                   { Just $1 }
540
541 explicit_activation :: { Activation }  -- In brackets
542         : '[' INTEGER ']'               { ActiveAfter  (fromInteger (getINTEGER $2)) }
543         | '[' '~' INTEGER ']'           { ActiveBefore (fromInteger (getINTEGER $3)) }
544
545 rule_forall :: { [RuleBndr RdrName] }
546         : 'forall' rule_var_list '.'            { $2 }
547         | {- empty -}                           { [] }
548
549 rule_var_list :: { [RuleBndr RdrName] }
550         : rule_var                              { [$1] }
551         | rule_var rule_var_list                { $1 : $2 }
552
553 rule_var :: { RuleBndr RdrName }
554         : varid                                 { RuleBndr $1 }
555         | '(' varid '::' ctype ')'              { RuleBndrSig $2 $4 }
556
557 -----------------------------------------------------------------------------
558 -- Deprecations (c.f. rules)
559
560 deprecations :: { OrdList (LHsDecl RdrName) }   -- Reversed
561         : deprecations ';' deprecation          { $1 `appOL` $3 }
562         | deprecations ';'                      { $1 }
563         | deprecation                           { $1 }
564         | {- empty -}                           { nilOL }
565
566 -- SUP: TEMPORARY HACK, not checking for `module Foo'
567 deprecation :: { OrdList (LHsDecl RdrName) }
568         : depreclist STRING
569                 { toOL [ LL $ DeprecD (Deprecation n (getSTRING $2)) 
570                        | n <- unLoc $1 ] }
571
572
573 -----------------------------------------------------------------------------
574 -- Foreign import and export declarations
575
576 -- for the time being, the following accepts foreign declarations conforming
577 -- to the FFI Addendum, Version 1.0 as well as pre-standard declarations
578 --
579 -- * a flag indicates whether pre-standard declarations have been used and
580 --   triggers a deprecation warning further down the road
581 --
582 -- NB: The first two rules could be combined into one by replacing `safety1'
583 --     with `safety'.  However, the combined rule conflicts with the
584 --     DEPRECATED rules.
585 --
586 fdecl :: { LHsDecl RdrName }
587 fdecl : 'import' callconv safety1 fspec
588                 {% mkImport $2 $3 (unLoc $4) >>= return.LL }
589       | 'import' callconv         fspec         
590                 {% do { d <- mkImport $2 (PlaySafe False) (unLoc $3);
591                         return (LL d) } }
592       | 'export' callconv fspec
593                 {% mkExport $2 (unLoc $3) >>= return.LL }
594         -- the following syntax is DEPRECATED
595       | fdecl1DEPRECATED                        { L1 (ForD (unLoc $1)) }
596       | fdecl2DEPRECATED                        { L1 (unLoc $1) }
597
598 fdecl1DEPRECATED :: { LForeignDecl RdrName }
599 fdecl1DEPRECATED 
600   ----------- DEPRECATED label decls ------------
601   : 'label' ext_name varid '::' sigtype
602     { LL $ ForeignImport $3 $5 (CImport defaultCCallConv (PlaySafe False) nilFS nilFS 
603                                    (CLabel ($2 `orElse` mkExtName (unLoc $3)))) True }
604
605   ----------- DEPRECATED ccall/stdcall decls ------------
606   --
607   -- NB: This business with the case expression below may seem overly
608   --     complicated, but it is necessary to avoid some conflicts.
609
610     -- DEPRECATED variant #1: lack of a calling convention specification
611     --                        (import) 
612   | 'import' {-no callconv-} ext_name safety varid_no_unsafe '::' sigtype
613     { let
614         target = StaticTarget ($2 `orElse` mkExtName (unLoc $4))
615       in
616       LL $ ForeignImport $4 $6 (CImport defaultCCallConv $3 nilFS nilFS 
617                                    (CFunction target)) True }
618
619     -- DEPRECATED variant #2: external name consists of two separate strings
620     --                        (module name and function name) (import)
621   | 'import' callconv STRING STRING safety varid_no_unsafe '::' sigtype
622     {% case $2 of
623          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
624          CCall cconv -> return $
625            let
626              imp = CFunction (StaticTarget (getSTRING $4))
627            in
628            LL $ ForeignImport $6 $8 (CImport cconv $5 nilFS nilFS imp) True }
629
630     -- DEPRECATED variant #3: `unsafe' after entity
631   | 'import' callconv STRING 'unsafe' varid_no_unsafe '::' sigtype
632     {% case $2 of
633          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
634          CCall cconv -> return $
635            let
636              imp = CFunction (StaticTarget (getSTRING $3))
637            in
638            LL $ ForeignImport $5 $7 (CImport cconv PlayRisky nilFS nilFS imp) True }
639
640     -- DEPRECATED variant #4: use of the special identifier `dynamic' without
641     --                        an explicit calling convention (import)
642   | 'import' {-no callconv-} 'dynamic' safety varid_no_unsafe '::' sigtype
643     { LL $ ForeignImport $4 $6 (CImport defaultCCallConv $3 nilFS nilFS 
644                                    (CFunction DynamicTarget)) True }
645
646     -- DEPRECATED variant #5: use of the special identifier `dynamic' (import)
647   | 'import' callconv 'dynamic' safety varid_no_unsafe '::' sigtype
648     {% case $2 of
649          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
650          CCall cconv -> return $
651            LL $ ForeignImport $5 $7 (CImport cconv $4 nilFS nilFS 
652                                         (CFunction DynamicTarget)) True }
653
654     -- DEPRECATED variant #6: lack of a calling convention specification
655     --                        (export) 
656   | 'export' {-no callconv-} ext_name varid '::' sigtype
657     { LL $ ForeignExport $3 $5 (CExport (CExportStatic ($2 `orElse` mkExtName (unLoc $3))
658                                    defaultCCallConv)) True }
659
660     -- DEPRECATED variant #7: external name consists of two separate strings
661     --                        (module name and function name) (export)
662   | 'export' callconv STRING STRING varid '::' sigtype
663     {% case $2 of
664          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
665          CCall cconv -> return $
666            LL $ ForeignExport $5 $7 
667                          (CExport (CExportStatic (getSTRING $4) cconv)) True }
668
669     -- DEPRECATED variant #8: use of the special identifier `dynamic' without
670     --                        an explicit calling convention (export)
671   | 'export' {-no callconv-} 'dynamic' varid '::' sigtype
672     { LL $ ForeignImport $3 $5 (CImport defaultCCallConv (PlaySafe False) nilFS nilFS 
673                                    CWrapper) True }
674
675     -- DEPRECATED variant #9: use of the special identifier `dynamic' (export)
676   | 'export' callconv 'dynamic' varid '::' sigtype
677     {% case $2 of
678          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
679          CCall cconv -> return $
680            LL $ ForeignImport $4 $6 
681                  (CImport cconv (PlaySafe False) nilFS nilFS CWrapper) True }
682
683   ----------- DEPRECATED .NET decls ------------
684   -- NB: removed the .NET call declaration, as it is entirely subsumed
685   --     by the new standard FFI declarations
686
687 fdecl2DEPRECATED :: { LHsDecl RdrName }
688 fdecl2DEPRECATED 
689   : 'import' 'dotnet' 'type' ext_name tycon { LL $ TyClD (ForeignType $5 $4 DNType) }
690     -- left this one unchanged for the moment as type imports are not
691     -- covered currently by the FFI standard -=chak
692
693
694 callconv :: { CallConv }
695           : 'stdcall'                   { CCall  StdCallConv }
696           | 'ccall'                     { CCall  CCallConv   }
697           | 'dotnet'                    { DNCall             }
698
699 safety :: { Safety }
700         : 'unsafe'                      { PlayRisky }
701         | 'safe'                        { PlaySafe False }
702         | 'threadsafe'                  { PlaySafe True  }
703         | {- empty -}                   { PlaySafe False }
704
705 safety1 :: { Safety }
706         : 'unsafe'                      { PlayRisky }
707         | 'safe'                        { PlaySafe  False }
708         | 'threadsafe'                  { PlaySafe  True }
709           -- only needed to avoid conflicts with the DEPRECATED rules
710
711 fspec :: { Located (Located FastString, Located RdrName, LHsType RdrName) }
712        : STRING var '::' sigtype      { LL (L (getLoc $1) (getSTRING $1), $2, $4) }
713        |        var '::' sigtype      { LL (noLoc nilFS, $1, $3) }
714          -- if the entity string is missing, it defaults to the empty string;
715          -- the meaning of an empty entity string depends on the calling
716          -- convention
717
718 -- DEPRECATED syntax
719 ext_name :: { Maybe CLabelString }
720         : STRING                { Just (getSTRING $1) }
721         | STRING STRING         { Just (getSTRING $2) } -- Ignore "module name" for now
722         | {- empty -}           { Nothing }
723
724
725 -----------------------------------------------------------------------------
726 -- Type signatures
727
728 opt_sig :: { Maybe (LHsType RdrName) }
729         : {- empty -}                   { Nothing }
730         | '::' sigtype                  { Just $2 }
731
732 opt_asig :: { Maybe (LHsType RdrName) }
733         : {- empty -}                   { Nothing }
734         | '::' atype                    { Just $2 }
735
736 sigtypes1 :: { [LHsType RdrName] }
737         : sigtype                       { [ $1 ] }
738         | sigtype ',' sigtypes1         { $1 : $3 }
739
740 sigtype :: { LHsType RdrName }
741         : ctype                         { L1 (mkImplicitHsForAllTy (noLoc []) $1) }
742         -- Wrap an Implicit forall if there isn't one there already
743
744 sig_vars :: { Located [Located RdrName] }
745          : sig_vars ',' var             { LL ($3 : unLoc $1) }
746          | var                          { L1 [$1] }
747
748 -----------------------------------------------------------------------------
749 -- Types
750
751 strict_mark :: { Located HsBang }
752         : '!'                           { L1 HsStrict }
753         | '{-# UNPACK' '#-}' '!'        { LL HsUnbox }
754
755 -- A ctype is a for-all type
756 ctype   :: { LHsType RdrName }
757         : 'forall' tv_bndrs '.' ctype   { LL $ mkExplicitHsForAllTy $2 (noLoc []) $4 }
758         | context '=>' type             { LL $ mkImplicitHsForAllTy   $1 $3 }
759         -- A type of form (context => type) is an *implicit* HsForAllTy
760         | type                          { $1 }
761
762 -- We parse a context as a btype so that we don't get reduce/reduce
763 -- errors in ctype.  The basic problem is that
764 --      (Eq a, Ord a)
765 -- looks so much like a tuple type.  We can't tell until we find the =>
766 context :: { LHsContext RdrName }
767         : btype                         {% checkContext $1 }
768
769 type :: { LHsType RdrName }
770         : ipvar '::' gentype            { LL (HsPredTy (HsIParam (unLoc $1) $3)) }
771         | gentype                       { $1 }
772
773 gentype :: { LHsType RdrName }
774         : btype                         { $1 }
775         | btype qtyconop gentype        { LL $ HsOpTy $1 $2 $3 }
776         | btype tyvarop  gentype        { LL $ HsOpTy $1 $2 $3 }
777         | btype '->' ctype              { LL $ HsFunTy $1 $3 }
778
779 btype :: { LHsType RdrName }
780         : btype atype                   { LL $ HsAppTy $1 $2 }
781         | atype                         { $1 }
782
783 atype :: { LHsType RdrName }
784         : gtycon                        { L1 (HsTyVar (unLoc $1)) }
785         | tyvar                         { L1 (HsTyVar (unLoc $1)) }
786         | strict_mark atype             { LL (HsBangTy (unLoc $1) $2) }
787         | '(' ctype ',' comma_types1 ')'  { LL $ HsTupleTy Boxed  ($2:$4) }
788         | '(#' comma_types1 '#)'        { LL $ HsTupleTy Unboxed $2     }
789         | '[' ctype ']'                 { LL $ HsListTy  $2 }
790         | '[:' ctype ':]'               { LL $ HsPArrTy  $2 }
791         | '(' ctype ')'                 { LL $ HsParTy   $2 }
792         | '(' ctype '::' kind ')'       { LL $ HsKindSig $2 $4 }
793 -- Generics
794         | INTEGER                       { L1 (HsNumTy (getINTEGER $1)) }
795
796 -- An inst_type is what occurs in the head of an instance decl
797 --      e.g.  (Foo a, Gaz b) => Wibble a b
798 -- It's kept as a single type, with a MonoDictTy at the right
799 -- hand corner, for convenience.
800 inst_type :: { LHsType RdrName }
801         : sigtype                       {% checkInstType $1 }
802
803 inst_types1 :: { [LHsType RdrName] }
804         : inst_type                     { [$1] }
805         | inst_type ',' inst_types1     { $1 : $3 }
806
807 comma_types0  :: { [LHsType RdrName] }
808         : comma_types1                  { $1 }
809         | {- empty -}                   { [] }
810
811 comma_types1    :: { [LHsType RdrName] }
812         : ctype                         { [$1] }
813         | ctype  ',' comma_types1       { $1 : $3 }
814
815 tv_bndrs :: { [LHsTyVarBndr RdrName] }
816          : tv_bndr tv_bndrs             { $1 : $2 }
817          | {- empty -}                  { [] }
818
819 tv_bndr :: { LHsTyVarBndr RdrName }
820         : tyvar                         { L1 (UserTyVar (unLoc $1)) }
821         | '(' tyvar '::' kind ')'       { LL (KindedTyVar (unLoc $2) $4) }
822
823 fds :: { Located [Located ([RdrName], [RdrName])] }
824         : {- empty -}                   { noLoc [] }
825         | '|' fds1                      { LL (reverse (unLoc $2)) }
826
827 fds1 :: { Located [Located ([RdrName], [RdrName])] }
828         : fds1 ',' fd                   { LL ($3 : unLoc $1) }
829         | fd                            { L1 [$1] }
830
831 fd :: { Located ([RdrName], [RdrName]) }
832         : varids0 '->' varids0          { L (comb3 $1 $2 $3)
833                                            (reverse (unLoc $1), reverse (unLoc $3)) }
834
835 varids0 :: { Located [RdrName] }
836         : {- empty -}                   { noLoc [] }
837         | varids0 tyvar                 { LL (unLoc $2 : unLoc $1) }
838
839 -----------------------------------------------------------------------------
840 -- Kinds
841
842 kind    :: { Kind }
843         : akind                 { $1 }
844         | akind '->' kind       { mkArrowKind $1 $3 }
845
846 akind   :: { Kind }
847         : '*'                   { liftedTypeKind }
848         | '(' kind ')'          { $2 }
849
850
851 -----------------------------------------------------------------------------
852 -- Datatype declarations
853
854 gadt_constrlist :: { Located [LConDecl RdrName] }
855         : '{'            gadt_constrs '}'       { LL (unLoc $2) }
856         |     vocurly    gadt_constrs close     { $2 }
857
858 gadt_constrs :: { Located [LConDecl RdrName] }
859         : gadt_constrs ';' gadt_constr  { LL ($3 : unLoc $1) }
860         | gadt_constrs ';'              { $1 }
861         | gadt_constr                   { L1 [$1] } 
862
863 -- We allow the following forms:
864 --      C :: Eq a => a -> T a
865 --      C :: forall a. Eq a => !a -> T a
866 --      D { x,y :: a } :: T a
867 --      forall a. Eq a => D { x,y :: a } :: T a
868
869 gadt_constr :: { LConDecl RdrName }
870         : con '::' sigtype
871               { LL (mkGadtDecl $1 $3) } 
872         -- Syntax: Maybe merge the record stuff with the single-case above?
873         --         (to kill the mostly harmless reduce/reduce error)
874         -- XXX revisit autrijus
875         | constr_stuff_record '::' sigtype
876                 { let (con,details) = unLoc $1 in 
877                   LL (ConDecl con Implicit [] (noLoc []) details (ResTyGADT $3)) }
878 {-
879         | forall context '=>' constr_stuff_record '::' sigtype
880                 { let (con,details) = unLoc $4 in 
881                   LL (ConDecl con Implicit (unLoc $1) $2 details (ResTyGADT $6)) }
882         | forall constr_stuff_record '::' sigtype
883                 { let (con,details) = unLoc $2 in 
884                   LL (ConDecl con Implicit (unLoc $1) (noLoc []) details (ResTyGADT $4)) }
885 -}
886
887
888 constrs :: { Located [LConDecl RdrName] }
889         : {- empty; a GHC extension -}  { noLoc [] }
890         | '=' constrs1                  { LL (unLoc $2) }
891
892 constrs1 :: { Located [LConDecl RdrName] }
893         : constrs1 '|' constr           { LL ($3 : unLoc $1) }
894         | constr                        { L1 [$1] }
895
896 constr :: { LConDecl RdrName }
897         : forall context '=>' constr_stuff      
898                 { let (con,details) = unLoc $4 in 
899                   LL (ConDecl con Explicit (unLoc $1) $2 details ResTyH98) }
900         | forall constr_stuff
901                 { let (con,details) = unLoc $2 in 
902                   LL (ConDecl con Explicit (unLoc $1) (noLoc []) details ResTyH98) }
903
904 forall :: { Located [LHsTyVarBndr RdrName] }
905         : 'forall' tv_bndrs '.'         { LL $2 }
906         | {- empty -}                   { noLoc [] }
907
908 constr_stuff :: { Located (Located RdrName, HsConDetails RdrName (LBangType RdrName)) }
909 -- We parse the constructor declaration 
910 --      C t1 t2
911 -- as a btype (treating C as a type constructor) and then convert C to be
912 -- a data constructor.  Reason: it might continue like this:
913 --      C t1 t2 %: D Int
914 -- in which case C really would be a type constructor.  We can't resolve this
915 -- ambiguity till we come across the constructor oprerator :% (or not, more usually)
916         : btype                         {% mkPrefixCon $1 [] >>= return.LL }
917         | oqtycon '{' '}'               {% mkRecCon $1 [] >>= return.LL }
918         | oqtycon '{' fielddecls '}'    {% mkRecCon $1 $3 >>= return.LL }
919         | btype conop btype             { LL ($2, InfixCon $1 $3) }
920
921 constr_stuff_record :: { Located (Located RdrName, HsConDetails RdrName (LBangType RdrName)) }
922         : oqtycon '{' '}'               {% mkRecCon $1 [] >>= return.sL (comb2 $1 $>) }
923         | oqtycon '{' fielddecls '}'    {% mkRecCon $1 $3 >>= return.sL (comb2 $1 $>) }
924
925 fielddecls :: { [([Located RdrName], LBangType RdrName)] }
926         : fielddecl ',' fielddecls      { unLoc $1 : $3 }
927         | fielddecl                     { [unLoc $1] }
928
929 fielddecl :: { Located ([Located RdrName], LBangType RdrName) }
930         : sig_vars '::' ctype           { LL (reverse (unLoc $1), $3) }
931
932 -- We allow the odd-looking 'inst_type' in a deriving clause, so that
933 -- we can do deriving( forall a. C [a] ) in a newtype (GHC extension).
934 -- The 'C [a]' part is converted to an HsPredTy by checkInstType
935 -- We don't allow a context, but that's sorted out by the type checker.
936 deriving :: { Located (Maybe [LHsType RdrName]) }
937         : {- empty -}                           { noLoc Nothing }
938         | 'deriving' qtycon     {% do { let { L loc tv = $2 }
939                                       ; p <- checkInstType (L loc (HsTyVar tv))
940                                       ; return (LL (Just [p])) } }
941         | 'deriving' '(' ')'                    { LL (Just []) }
942         | 'deriving' '(' inst_types1 ')'        { LL (Just $3) }
943              -- Glasgow extension: allow partial 
944              -- applications in derivings
945
946 -----------------------------------------------------------------------------
947 -- Value definitions
948
949 {- There's an awkward overlap with a type signature.  Consider
950         f :: Int -> Int = ...rhs...
951    Then we can't tell whether it's a type signature or a value
952    definition with a result signature until we see the '='.
953    So we have to inline enough to postpone reductions until we know.
954 -}
955
956 {-
957   ATTENTION: Dirty Hackery Ahead! If the second alternative of vars is var
958   instead of qvar, we get another shift/reduce-conflict. Consider the
959   following programs:
960   
961      { (^^) :: Int->Int ; }          Type signature; only var allowed
962
963      { (^^) :: Int->Int = ... ; }    Value defn with result signature;
964                                      qvar allowed (because of instance decls)
965   
966   We can't tell whether to reduce var to qvar until after we've read the signatures.
967 -}
968
969 decl    :: { Located (OrdList (LHsDecl RdrName)) }
970         : sigdecl                       { $1 }
971         | infixexp opt_sig rhs          {% do { r <- checkValDef $1 $2 $3;
972                                                 return (LL $ unitOL (LL $ ValD r)) } }
973
974 rhs     :: { Located (GRHSs RdrName) }
975         : '=' exp wherebinds    { L (comb3 $1 $2 $3) $ GRHSs (unguardedRHS $2) (unLoc $3) }
976         | gdrhs wherebinds      { LL $ GRHSs (reverse (unLoc $1)) (unLoc $2) }
977
978 gdrhs :: { Located [LGRHS RdrName] }
979         : gdrhs gdrh            { LL ($2 : unLoc $1) }
980         | gdrh                  { L1 [$1] }
981
982 gdrh :: { LGRHS RdrName }
983         : '|' quals '=' exp     { sL (comb2 $1 $>) $ GRHS (reverse (unLoc $2)) $4 }
984
985 sigdecl :: { Located (OrdList (LHsDecl RdrName)) }
986         : infixexp '::' sigtype
987                                 {% do s <- checkValSig $1 $3; 
988                                       return (LL $ unitOL (LL $ SigD s)) }
989                 -- See the above notes for why we need infixexp here
990         | var ',' sig_vars '::' sigtype 
991                                 { LL $ toOL [ LL $ SigD (TypeSig n $5) | n <- $1 : unLoc $3 ] }
992         | infix prec ops        { LL $ toOL [ LL $ SigD (FixSig (FixitySig n (Fixity $2 (unLoc $1))))
993                                              | n <- unLoc $3 ] }
994         | '{-# INLINE'   activation qvar '#-}'        
995                                 { LL $ unitOL (LL $ SigD (InlineSig $3 (mkInlineSpec $2 (getINLINE $1)))) }
996         | '{-# SPECIALISE' qvar '::' sigtypes1 '#-}'
997                                 { LL $ toOL [ LL $ SigD (SpecSig $2 t defaultInlineSpec)
998                                             | t <- $4] }
999         | '{-# SPECIALISE_INLINE' activation qvar '::' sigtypes1 '#-}'
1000                                 { LL $ toOL [ LL $ SigD (SpecSig $3 t (mkInlineSpec $2 (getSPEC_INLINE $1)))
1001                                             | t <- $5] }
1002         | '{-# SPECIALISE' 'instance' inst_type '#-}'
1003                                 { LL $ unitOL (LL $ SigD (SpecInstSig $3)) }
1004
1005 -----------------------------------------------------------------------------
1006 -- Expressions
1007
1008 exp   :: { LHsExpr RdrName }
1009         : infixexp '::' sigtype         { LL $ ExprWithTySig $1 $3 }
1010         | infixexp '-<' exp             { LL $ HsArrApp $1 $3 placeHolderType HsFirstOrderApp True }
1011         | infixexp '>-' exp             { LL $ HsArrApp $3 $1 placeHolderType HsFirstOrderApp False }
1012         | infixexp '-<<' exp            { LL $ HsArrApp $1 $3 placeHolderType HsHigherOrderApp True }
1013         | infixexp '>>-' exp            { LL $ HsArrApp $3 $1 placeHolderType HsHigherOrderApp False}
1014         | infixexp                      { $1 }
1015
1016 infixexp :: { LHsExpr RdrName }
1017         : exp10                         { $1 }
1018         | infixexp qop exp10            { LL (OpApp $1 $2 (panic "fixity") $3) }
1019
1020 exp10 :: { LHsExpr RdrName }
1021         : '\\' aexp aexps opt_asig '->' exp     
1022                         {% checkPatterns ($2 : reverse $3) >>= \ ps -> 
1023                            return (LL $ HsLam (mkMatchGroup [LL $ Match ps $4
1024                                             (GRHSs (unguardedRHS $6) emptyLocalBinds
1025                                                         )])) }
1026         | 'let' binds 'in' exp                  { LL $ HsLet (unLoc $2) $4 }
1027         | 'if' exp 'then' exp 'else' exp        { LL $ HsIf $2 $4 $6 }
1028         | 'case' exp 'of' altslist              { LL $ HsCase $2 (mkMatchGroup (unLoc $4)) }
1029         | '-' fexp                              { LL $ mkHsNegApp $2 }
1030
1031         | 'do' stmtlist                 {% let loc = comb2 $1 $2 in
1032                                            checkDo loc (unLoc $2)  >>= \ (stmts,body) ->
1033                                            return (L loc (mkHsDo DoExpr stmts body)) }
1034         | 'mdo' stmtlist                {% let loc = comb2 $1 $2 in
1035                                            checkDo loc (unLoc $2)  >>= \ (stmts,body) ->
1036                                            return (L loc (mkHsDo (MDoExpr noPostTcTable) stmts body)) }
1037         | scc_annot exp                         { LL $ if opt_SccProfilingOn
1038                                                         then HsSCC (unLoc $1) $2
1039                                                         else HsPar $2 }
1040
1041         | 'proc' aexp '->' exp  
1042                         {% checkPattern $2 >>= \ p -> 
1043                            return (LL $ HsProc p (LL $ HsCmdTop $4 [] 
1044                                                    placeHolderType undefined)) }
1045                                                 -- TODO: is LL right here?
1046
1047         | '{-# CORE' STRING '#-}' exp           { LL $ HsCoreAnn (getSTRING $2) $4 }
1048                                                     -- hdaume: core annotation
1049         | fexp                                  { $1 }
1050
1051 scc_annot :: { Located FastString }
1052         : '_scc_' STRING                        { LL $ getSTRING $2 }
1053         | '{-# SCC' STRING '#-}'                { LL $ getSTRING $2 }
1054
1055 fexp    :: { LHsExpr RdrName }
1056         : fexp aexp                             { LL $ HsApp $1 $2 }
1057         | aexp                                  { $1 }
1058
1059 aexps   :: { [LHsExpr RdrName] }
1060         : aexps aexp                            { $2 : $1 }
1061         | {- empty -}                           { [] }
1062
1063 aexp    :: { LHsExpr RdrName }
1064         : qvar '@' aexp                 { LL $ EAsPat $1 $3 }
1065         | '~' aexp                      { LL $ ELazyPat $2 }
1066         | aexp1                         { $1 }
1067
1068 aexp1   :: { LHsExpr RdrName }
1069         : aexp1 '{' fbinds '}'  {% do { r <- mkRecConstrOrUpdate $1 (comb2 $2 $4) 
1070                                                         (reverse $3);
1071                                         return (LL r) }}
1072         | aexp2                 { $1 }
1073
1074 -- Here was the syntax for type applications that I was planning
1075 -- but there are difficulties (e.g. what order for type args)
1076 -- so it's not enabled yet.
1077 -- But this case *is* used for the left hand side of a generic definition,
1078 -- which is parsed as an expression before being munged into a pattern
1079         | qcname '{|' gentype '|}'      { LL $ HsApp (sL (getLoc $1) (HsVar (unLoc $1)))
1080                                                      (sL (getLoc $3) (HsType $3)) }
1081
1082 aexp2   :: { LHsExpr RdrName }
1083         : ipvar                         { L1 (HsIPVar $! unLoc $1) }
1084         | qcname                        { L1 (HsVar   $! unLoc $1) }
1085         | literal                       { L1 (HsLit   $! unLoc $1) }
1086         | INTEGER                       { L1 (HsOverLit $! mkHsIntegral (getINTEGER $1)) }
1087         | RATIONAL                      { L1 (HsOverLit $! mkHsFractional (getRATIONAL $1)) }
1088         | '(' exp ')'                   { LL (HsPar $2) }
1089         | '(' exp ',' texps ')'         { LL $ ExplicitTuple ($2 : reverse $4) Boxed }
1090         | '(#' texps '#)'               { LL $ ExplicitTuple (reverse $2)      Unboxed }
1091         | '[' list ']'                  { LL (unLoc $2) }
1092         | '[:' parr ':]'                { LL (unLoc $2) }
1093         | '(' infixexp qop ')'          { LL $ SectionL $2 $3 }
1094         | '(' qopm infixexp ')'         { LL $ SectionR $2 $3 }
1095         | '_'                           { L1 EWildPat }
1096         
1097         -- MetaHaskell Extension
1098         | TH_ID_SPLICE          { L1 $ HsSpliceE (mkHsSplice 
1099                                         (L1 $ HsVar (mkUnqual varName 
1100                                                         (getTH_ID_SPLICE $1)))) } -- $x
1101         | '$(' exp ')'          { LL $ HsSpliceE (mkHsSplice $2) }               -- $( exp )
1102
1103         | TH_VAR_QUOTE qvar     { LL $ HsBracket (VarBr (unLoc $2)) }
1104         | TH_VAR_QUOTE qcon     { LL $ HsBracket (VarBr (unLoc $2)) }
1105         | TH_TY_QUOTE tyvar     { LL $ HsBracket (VarBr (unLoc $2)) }
1106         | TH_TY_QUOTE gtycon    { LL $ HsBracket (VarBr (unLoc $2)) }
1107         | '[|' exp '|]'         { LL $ HsBracket (ExpBr $2) }                       
1108         | '[t|' ctype '|]'      { LL $ HsBracket (TypBr $2) }                       
1109         | '[p|' infixexp '|]'   {% checkPattern $2 >>= \p ->
1110                                            return (LL $ HsBracket (PatBr p)) }
1111         | '[d|' cvtopbody '|]'  { LL $ HsBracket (DecBr (mkGroup $2)) }
1112
1113         -- arrow notation extension
1114         | '(|' aexp2 cmdargs '|)'       { LL $ HsArrForm $2 Nothing (reverse $3) }
1115
1116 cmdargs :: { [LHsCmdTop RdrName] }
1117         : cmdargs acmd                  { $2 : $1 }
1118         | {- empty -}                   { [] }
1119
1120 acmd    :: { LHsCmdTop RdrName }
1121         : aexp2                 { L1 $ HsCmdTop $1 [] placeHolderType undefined }
1122
1123 cvtopbody :: { [LHsDecl RdrName] }
1124         :  '{'            cvtopdecls0 '}'               { $2 }
1125         |      vocurly    cvtopdecls0 close             { $2 }
1126
1127 cvtopdecls0 :: { [LHsDecl RdrName] }
1128         : {- empty -}           { [] }
1129         | cvtopdecls            { $1 }
1130
1131 texps :: { [LHsExpr RdrName] }
1132         : texps ',' exp                 { $3 : $1 }
1133         | exp                           { [$1] }
1134
1135
1136 -----------------------------------------------------------------------------
1137 -- List expressions
1138
1139 -- The rules below are little bit contorted to keep lexps left-recursive while
1140 -- avoiding another shift/reduce-conflict.
1141
1142 list :: { LHsExpr RdrName }
1143         : exp                   { L1 $ ExplicitList placeHolderType [$1] }
1144         | lexps                 { L1 $ ExplicitList placeHolderType (reverse (unLoc $1)) }
1145         | exp '..'              { LL $ ArithSeq noPostTcExpr (From $1) }
1146         | exp ',' exp '..'      { LL $ ArithSeq noPostTcExpr (FromThen $1 $3) }
1147         | exp '..' exp          { LL $ ArithSeq noPostTcExpr (FromTo $1 $3) }
1148         | exp ',' exp '..' exp  { LL $ ArithSeq noPostTcExpr (FromThenTo $1 $3 $5) }
1149         | exp pquals            { sL (comb2 $1 $>) $ mkHsDo ListComp (reverse (unLoc $2)) $1 }
1150
1151 lexps :: { Located [LHsExpr RdrName] }
1152         : lexps ',' exp                 { LL ($3 : unLoc $1) }
1153         | exp ',' exp                   { LL [$3,$1] }
1154
1155 -----------------------------------------------------------------------------
1156 -- List Comprehensions
1157
1158 pquals :: { Located [LStmt RdrName] }   -- Either a singleton ParStmt, 
1159                                         -- or a reversed list of Stmts
1160         : pquals1                       { case unLoc $1 of
1161                                             [qs] -> L1 qs
1162                                             qss  -> L1 [L1 (ParStmt stmtss)]
1163                                                  where
1164                                                     stmtss = [ (reverse qs, undefined) 
1165                                                              | qs <- qss ]
1166                                         }
1167                         
1168 pquals1 :: { Located [[LStmt RdrName]] }
1169         : pquals1 '|' quals             { LL (unLoc $3 : unLoc $1) }
1170         | '|' quals                     { L (getLoc $2) [unLoc $2] }
1171
1172 quals :: { Located [LStmt RdrName] }
1173         : quals ',' qual                { LL ($3 : unLoc $1) }
1174         | qual                          { L1 [$1] }
1175
1176 -----------------------------------------------------------------------------
1177 -- Parallel array expressions
1178
1179 -- The rules below are little bit contorted; see the list case for details.
1180 -- Note that, in contrast to lists, we only have finite arithmetic sequences.
1181 -- Moreover, we allow explicit arrays with no element (represented by the nil
1182 -- constructor in the list case).
1183
1184 parr :: { LHsExpr RdrName }
1185         :                               { noLoc (ExplicitPArr placeHolderType []) }
1186         | exp                           { L1 $ ExplicitPArr placeHolderType [$1] }
1187         | lexps                         { L1 $ ExplicitPArr placeHolderType 
1188                                                        (reverse (unLoc $1)) }
1189         | exp '..' exp                  { LL $ PArrSeq noPostTcExpr (FromTo $1 $3) }
1190         | exp ',' exp '..' exp          { LL $ PArrSeq noPostTcExpr (FromThenTo $1 $3 $5) }
1191         | exp pquals                    { sL (comb2 $1 $>) $ mkHsDo PArrComp (reverse (unLoc $2)) $1 }
1192
1193 -- We are reusing `lexps' and `pquals' from the list case.
1194
1195 -----------------------------------------------------------------------------
1196 -- Case alternatives
1197
1198 altslist :: { Located [LMatch RdrName] }
1199         : '{'            alts '}'       { LL (reverse (unLoc $2)) }
1200         |     vocurly    alts  close    { L (getLoc $2) (reverse (unLoc $2)) }
1201
1202 alts    :: { Located [LMatch RdrName] }
1203         : alts1                         { L1 (unLoc $1) }
1204         | ';' alts                      { LL (unLoc $2) }
1205
1206 alts1   :: { Located [LMatch RdrName] }
1207         : alts1 ';' alt                 { LL ($3 : unLoc $1) }
1208         | alts1 ';'                     { LL (unLoc $1) }
1209         | alt                           { L1 [$1] }
1210
1211 alt     :: { LMatch RdrName }
1212         : infixexp opt_sig alt_rhs      {%  checkPattern $1 >>= \p ->
1213                                             return (LL (Match [p] $2 (unLoc $3))) }
1214
1215 alt_rhs :: { Located (GRHSs RdrName) }
1216         : ralt wherebinds               { LL (GRHSs (unLoc $1) (unLoc $2)) }
1217
1218 ralt :: { Located [LGRHS RdrName] }
1219         : '->' exp                      { LL (unguardedRHS $2) }
1220         | gdpats                        { L1 (reverse (unLoc $1)) }
1221
1222 gdpats :: { Located [LGRHS RdrName] }
1223         : gdpats gdpat                  { LL ($2 : unLoc $1) }
1224         | gdpat                         { L1 [$1] }
1225
1226 gdpat   :: { LGRHS RdrName }
1227         : '|' quals '->' exp            { sL (comb2 $1 $>) $ GRHS (reverse (unLoc $2)) $4 }
1228
1229 -----------------------------------------------------------------------------
1230 -- Statement sequences
1231
1232 stmtlist :: { Located [LStmt RdrName] }
1233         : '{'           stmts '}'       { LL (unLoc $2) }
1234         |     vocurly   stmts close     { $2 }
1235
1236 --      do { ;; s ; s ; ; s ;; }
1237 -- The last Stmt should be an expression, but that's hard to enforce
1238 -- here, because we need too much lookahead if we see do { e ; }
1239 -- So we use ExprStmts throughout, and switch the last one over
1240 -- in ParseUtils.checkDo instead
1241 stmts :: { Located [LStmt RdrName] }
1242         : stmt stmts_help               { LL ($1 : unLoc $2) }
1243         | ';' stmts                     { LL (unLoc $2) }
1244         | {- empty -}                   { noLoc [] }
1245
1246 stmts_help :: { Located [LStmt RdrName] } -- might be empty
1247         : ';' stmts                     { LL (unLoc $2) }
1248         | {- empty -}                   { noLoc [] }
1249
1250 -- For typing stmts at the GHCi prompt, where 
1251 -- the input may consist of just comments.
1252 maybe_stmt :: { Maybe (LStmt RdrName) }
1253         : stmt                          { Just $1 }
1254         | {- nothing -}                 { Nothing }
1255
1256 stmt  :: { LStmt RdrName }
1257         : qual                          { $1 }
1258         | infixexp '->' exp             {% checkPattern $3 >>= \p ->
1259                                            return (LL $ mkBindStmt p $1) }
1260         | 'rec' stmtlist                { LL $ mkRecStmt (unLoc $2) }
1261
1262 qual  :: { LStmt RdrName }
1263         : exp '<-' exp                  {% checkPattern $1 >>= \p ->
1264                                            return (LL $ mkBindStmt p $3) }
1265         | exp                           { L1 $ mkExprStmt $1 }
1266         | 'let' binds                   { LL $ LetStmt (unLoc $2) }
1267
1268 -----------------------------------------------------------------------------
1269 -- Record Field Update/Construction
1270
1271 fbinds  :: { HsRecordBinds RdrName }
1272         : fbinds1                       { $1 }
1273         | {- empty -}                   { [] }
1274
1275 fbinds1 :: { HsRecordBinds RdrName }
1276         : fbinds1 ',' fbind             { $3 : $1 }
1277         | fbind                         { [$1] }
1278   
1279 fbind   :: { (Located RdrName, LHsExpr RdrName) }
1280         : qvar '=' exp                  { ($1,$3) }
1281
1282 -----------------------------------------------------------------------------
1283 -- Implicit Parameter Bindings
1284
1285 dbinds  :: { Located [LIPBind RdrName] }
1286         : dbinds ';' dbind              { LL ($3 : unLoc $1) }
1287         | dbinds ';'                    { LL (unLoc $1) }
1288         | dbind                         { L1 [$1] }
1289 --      | {- empty -}                   { [] }
1290
1291 dbind   :: { LIPBind RdrName }
1292 dbind   : ipvar '=' exp                 { LL (IPBind (unLoc $1) $3) }
1293
1294 ipvar   :: { Located (IPName RdrName) }
1295         : IPDUPVARID            { L1 (Dupable (mkUnqual varName (getIPDUPVARID $1))) }
1296         | IPSPLITVARID          { L1 (Linear  (mkUnqual varName (getIPSPLITVARID $1))) }
1297
1298 -----------------------------------------------------------------------------
1299 -- Deprecations
1300
1301 depreclist :: { Located [RdrName] }
1302 depreclist : deprec_var                 { L1 [unLoc $1] }
1303            | deprec_var ',' depreclist  { LL (unLoc $1 : unLoc $3) }
1304
1305 deprec_var :: { Located RdrName }
1306 deprec_var : var                        { $1 }
1307            | con                        { $1 }
1308
1309 -----------------------------------------
1310 -- Data constructors
1311 qcon    :: { Located RdrName }
1312         : qconid                { $1 }
1313         | '(' qconsym ')'       { LL (unLoc $2) }
1314         | sysdcon               { L1 $ nameRdrName (dataConName (unLoc $1)) }
1315 -- The case of '[:' ':]' is part of the production `parr'
1316
1317 con     :: { Located RdrName }
1318         : conid                 { $1 }
1319         | '(' consym ')'        { LL (unLoc $2) }
1320         | sysdcon               { L1 $ nameRdrName (dataConName (unLoc $1)) }
1321
1322 sysdcon :: { Located DataCon }  -- Wired in data constructors
1323         : '(' ')'               { LL unitDataCon }
1324         | '(' commas ')'        { LL $ tupleCon Boxed $2 }
1325         | '[' ']'               { LL nilDataCon }
1326
1327 conop :: { Located RdrName }
1328         : consym                { $1 }  
1329         | '`' conid '`'         { LL (unLoc $2) }
1330
1331 qconop :: { Located RdrName }
1332         : qconsym               { $1 }
1333         | '`' qconid '`'        { LL (unLoc $2) }
1334
1335 -----------------------------------------------------------------------------
1336 -- Type constructors
1337
1338 gtycon  :: { Located RdrName }  -- A "general" qualified tycon
1339         : oqtycon                       { $1 }
1340         | '(' ')'                       { LL $ getRdrName unitTyCon }
1341         | '(' commas ')'                { LL $ getRdrName (tupleTyCon Boxed $2) }
1342         | '(' '->' ')'                  { LL $ getRdrName funTyCon }
1343         | '[' ']'                       { LL $ listTyCon_RDR }
1344         | '[:' ':]'                     { LL $ parrTyCon_RDR }
1345
1346 oqtycon :: { Located RdrName }  -- An "ordinary" qualified tycon
1347         : qtycon                        { $1 }
1348         | '(' qtyconsym ')'             { LL (unLoc $2) }
1349
1350 qtyconop :: { Located RdrName } -- Qualified or unqualified
1351         : qtyconsym                     { $1 }
1352         | '`' qtycon '`'                { LL (unLoc $2) }
1353
1354 qtycon :: { Located RdrName }   -- Qualified or unqualified
1355         : QCONID                        { L1 $! mkQual tcClsName (getQCONID $1) }
1356         | tycon                         { $1 }
1357
1358 tycon   :: { Located RdrName }  -- Unqualified
1359         : CONID                         { L1 $! mkUnqual tcClsName (getCONID $1) }
1360
1361 qtyconsym :: { Located RdrName }
1362         : QCONSYM                       { L1 $! mkQual tcClsName (getQCONSYM $1) }
1363         | tyconsym                      { $1 }
1364
1365 tyconsym :: { Located RdrName }
1366         : CONSYM                        { L1 $! mkUnqual tcClsName (getCONSYM $1) }
1367
1368 -----------------------------------------------------------------------------
1369 -- Operators
1370
1371 op      :: { Located RdrName }   -- used in infix decls
1372         : varop                 { $1 }
1373         | conop                 { $1 }
1374
1375 varop   :: { Located RdrName }
1376         : varsym                { $1 }
1377         | '`' varid '`'         { LL (unLoc $2) }
1378
1379 qop     :: { LHsExpr RdrName }   -- used in sections
1380         : qvarop                { L1 $ HsVar (unLoc $1) }
1381         | qconop                { L1 $ HsVar (unLoc $1) }
1382
1383 qopm    :: { LHsExpr RdrName }   -- used in sections
1384         : qvaropm               { L1 $ HsVar (unLoc $1) }
1385         | qconop                { L1 $ HsVar (unLoc $1) }
1386
1387 qvarop :: { Located RdrName }
1388         : qvarsym               { $1 }
1389         | '`' qvarid '`'        { LL (unLoc $2) }
1390
1391 qvaropm :: { Located RdrName }
1392         : qvarsym_no_minus      { $1 }
1393         | '`' qvarid '`'        { LL (unLoc $2) }
1394
1395 -----------------------------------------------------------------------------
1396 -- Type variables
1397
1398 tyvar   :: { Located RdrName }
1399 tyvar   : tyvarid               { $1 }
1400         | '(' tyvarsym ')'      { LL (unLoc $2) }
1401
1402 tyvarop :: { Located RdrName }
1403 tyvarop : '`' tyvarid '`'       { LL (unLoc $2) }
1404         | tyvarsym              { $1 }
1405
1406 tyvarid :: { Located RdrName }
1407         : VARID                 { L1 $! mkUnqual tvName (getVARID $1) }
1408         | special_id            { L1 $! mkUnqual tvName (unLoc $1) }
1409         | 'unsafe'              { L1 $! mkUnqual tvName FSLIT("unsafe") }
1410         | 'safe'                { L1 $! mkUnqual tvName FSLIT("safe") }
1411         | 'threadsafe'          { L1 $! mkUnqual tvName FSLIT("threadsafe") }
1412
1413 tyvarsym :: { Located RdrName }
1414 -- Does not include "!", because that is used for strictness marks
1415 --               or ".", because that separates the quantified type vars from the rest
1416 --               or "*", because that's used for kinds
1417 tyvarsym : VARSYM               { L1 $! mkUnqual tvName (getVARSYM $1) }
1418
1419 -----------------------------------------------------------------------------
1420 -- Variables 
1421
1422 var     :: { Located RdrName }
1423         : varid                 { $1 }
1424         | '(' varsym ')'        { LL (unLoc $2) }
1425
1426 qvar    :: { Located RdrName }
1427         : qvarid                { $1 }
1428         | '(' varsym ')'        { LL (unLoc $2) }
1429         | '(' qvarsym1 ')'      { LL (unLoc $2) }
1430 -- We've inlined qvarsym here so that the decision about
1431 -- whether it's a qvar or a var can be postponed until
1432 -- *after* we see the close paren.
1433
1434 qvarid :: { Located RdrName }
1435         : varid                 { $1 }
1436         | QVARID                { L1 $ mkQual varName (getQVARID $1) }
1437
1438 varid :: { Located RdrName }
1439         : varid_no_unsafe       { $1 }
1440         | 'unsafe'              { L1 $! mkUnqual varName FSLIT("unsafe") }
1441         | 'safe'                { L1 $! mkUnqual varName FSLIT("safe") }
1442         | 'threadsafe'          { L1 $! mkUnqual varName FSLIT("threadsafe") }
1443
1444 varid_no_unsafe :: { Located RdrName }
1445         : VARID                 { L1 $! mkUnqual varName (getVARID $1) }
1446         | special_id            { L1 $! mkUnqual varName (unLoc $1) }
1447         | 'forall'              { L1 $! mkUnqual varName FSLIT("forall") }
1448
1449 qvarsym :: { Located RdrName }
1450         : varsym                { $1 }
1451         | qvarsym1              { $1 }
1452
1453 qvarsym_no_minus :: { Located RdrName }
1454         : varsym_no_minus       { $1 }
1455         | qvarsym1              { $1 }
1456
1457 qvarsym1 :: { Located RdrName }
1458 qvarsym1 : QVARSYM              { L1 $ mkQual varName (getQVARSYM $1) }
1459
1460 varsym :: { Located RdrName }
1461         : varsym_no_minus       { $1 }
1462         | '-'                   { L1 $ mkUnqual varName FSLIT("-") }
1463
1464 varsym_no_minus :: { Located RdrName } -- varsym not including '-'
1465         : VARSYM                { L1 $ mkUnqual varName (getVARSYM $1) }
1466         | special_sym           { L1 $ mkUnqual varName (unLoc $1) }
1467
1468
1469 -- These special_ids are treated as keywords in various places, 
1470 -- but as ordinary ids elsewhere.   'special_id' collects all these
1471 -- except 'unsafe' and 'forall' whose treatment differs depending on context
1472 special_id :: { Located FastString }
1473 special_id
1474         : 'as'                  { L1 FSLIT("as") }
1475         | 'qualified'           { L1 FSLIT("qualified") }
1476         | 'hiding'              { L1 FSLIT("hiding") }
1477         | 'export'              { L1 FSLIT("export") }
1478         | 'label'               { L1 FSLIT("label")  }
1479         | 'dynamic'             { L1 FSLIT("dynamic") }
1480         | 'stdcall'             { L1 FSLIT("stdcall") }
1481         | 'ccall'               { L1 FSLIT("ccall") }
1482
1483 special_sym :: { Located FastString }
1484 special_sym : '!'       { L1 FSLIT("!") }
1485             | '.'       { L1 FSLIT(".") }
1486             | '*'       { L1 FSLIT("*") }
1487
1488 -----------------------------------------------------------------------------
1489 -- Data constructors
1490
1491 qconid :: { Located RdrName }   -- Qualified or unqualified
1492         : conid                 { $1 }
1493         | QCONID                { L1 $ mkQual dataName (getQCONID $1) }
1494
1495 conid   :: { Located RdrName }
1496         : CONID                 { L1 $ mkUnqual dataName (getCONID $1) }
1497
1498 qconsym :: { Located RdrName }  -- Qualified or unqualified
1499         : consym                { $1 }
1500         | QCONSYM               { L1 $ mkQual dataName (getQCONSYM $1) }
1501
1502 consym :: { Located RdrName }
1503         : CONSYM                { L1 $ mkUnqual dataName (getCONSYM $1) }
1504
1505         -- ':' means only list cons
1506         | ':'                   { L1 $ consDataCon_RDR }
1507
1508
1509 -----------------------------------------------------------------------------
1510 -- Literals
1511
1512 literal :: { Located HsLit }
1513         : CHAR                  { L1 $ HsChar       $ getCHAR $1 }
1514         | STRING                { L1 $ HsString     $ getSTRING $1 }
1515         | PRIMINTEGER           { L1 $ HsIntPrim    $ getPRIMINTEGER $1 }
1516         | PRIMCHAR              { L1 $ HsCharPrim   $ getPRIMCHAR $1 }
1517         | PRIMSTRING            { L1 $ HsStringPrim $ getPRIMSTRING $1 }
1518         | PRIMFLOAT             { L1 $ HsFloatPrim  $ getPRIMFLOAT $1 }
1519         | PRIMDOUBLE            { L1 $ HsDoublePrim $ getPRIMDOUBLE $1 }
1520
1521 -----------------------------------------------------------------------------
1522 -- Layout
1523
1524 close :: { () }
1525         : vccurly               { () } -- context popped in lexer.
1526         | error                 {% popContext }
1527
1528 -----------------------------------------------------------------------------
1529 -- Miscellaneous (mostly renamings)
1530
1531 modid   :: { Located Module }
1532         : CONID                 { L1 $ mkModuleFS (getCONID $1) }
1533         | QCONID                { L1 $ let (mod,c) = getQCONID $1 in
1534                                   mkModuleFS
1535                                    (mkFastString
1536                                      (unpackFS mod ++ '.':unpackFS c))
1537                                 }
1538
1539 commas :: { Int }
1540         : commas ','                    { $1 + 1 }
1541         | ','                           { 2 }
1542
1543 -----------------------------------------------------------------------------
1544
1545 {
1546 happyError :: P a
1547 happyError = srcParseFail
1548
1549 getVARID        (L _ (ITvarid    x)) = x
1550 getCONID        (L _ (ITconid    x)) = x
1551 getVARSYM       (L _ (ITvarsym   x)) = x
1552 getCONSYM       (L _ (ITconsym   x)) = x
1553 getQVARID       (L _ (ITqvarid   x)) = x
1554 getQCONID       (L _ (ITqconid   x)) = x
1555 getQVARSYM      (L _ (ITqvarsym  x)) = x
1556 getQCONSYM      (L _ (ITqconsym  x)) = x
1557 getIPDUPVARID   (L _ (ITdupipvarid   x)) = x
1558 getIPSPLITVARID (L _ (ITsplitipvarid x)) = x
1559 getCHAR         (L _ (ITchar     x)) = x
1560 getSTRING       (L _ (ITstring   x)) = x
1561 getINTEGER      (L _ (ITinteger  x)) = x
1562 getRATIONAL     (L _ (ITrational x)) = x
1563 getPRIMCHAR     (L _ (ITprimchar   x)) = x
1564 getPRIMSTRING   (L _ (ITprimstring x)) = x
1565 getPRIMINTEGER  (L _ (ITprimint    x)) = x
1566 getPRIMFLOAT    (L _ (ITprimfloat  x)) = x
1567 getPRIMDOUBLE   (L _ (ITprimdouble x)) = x
1568 getTH_ID_SPLICE (L _ (ITidEscape x)) = x
1569 getINLINE       (L _ (ITinline_prag b)) = b
1570 getSPEC_INLINE  (L _ (ITspec_inline_prag b)) = b
1571
1572 -- Utilities for combining source spans
1573 comb2 :: Located a -> Located b -> SrcSpan
1574 comb2 = combineLocs
1575
1576 comb3 :: Located a -> Located b -> Located c -> SrcSpan
1577 comb3 a b c = combineSrcSpans (getLoc a) (combineSrcSpans (getLoc b) (getLoc c))
1578
1579 comb4 :: Located a -> Located b -> Located c -> Located d -> SrcSpan
1580 comb4 a b c d = combineSrcSpans (getLoc a) $ combineSrcSpans (getLoc b) $
1581                 combineSrcSpans (getLoc c) (getLoc d)
1582
1583 -- strict constructor version:
1584 {-# INLINE sL #-}
1585 sL :: SrcSpan -> a -> Located a
1586 sL span a = span `seq` L span a
1587
1588 -- Make a source location for the file.  We're a bit lazy here and just
1589 -- make a point SrcSpan at line 1, column 0.  Strictly speaking we should
1590 -- try to find the span of the whole file (ToDo).
1591 fileSrcSpan :: P SrcSpan
1592 fileSrcSpan = do 
1593   l <- getSrcLoc; 
1594   let loc = mkSrcLoc (srcLocFile l) 1 0;
1595   return (mkSrcSpan loc loc)
1596 }