da16bff272a7666e5af63f51d06ab497ba0c09ad
[ghc-hetmet.git] / 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, unliftedTypeKind )
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 ModuleName) }
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) }
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         | decl                                  { unLoc $1 }
443
444         -- Template Haskell Extension
445         | '$(' exp ')'                          { unitOL (LL $ SpliceD (SpliceDecl $2)) }
446         | TH_ID_SPLICE                          { unitOL (LL $ SpliceD (SpliceDecl $
447                                                         L1 $ HsVar (mkUnqual varName (getTH_ID_SPLICE $1))
448                                                   )) }
449
450 tycl_decl :: { LTyClDecl RdrName }
451         : 'type' type '=' ctype 
452                 -- Note type on the left of the '='; this allows
453                 -- infix type constructors to be declared
454                 -- 
455                 -- Note ctype, not sigtype, on the right
456                 -- We allow an explicit for-all but we don't insert one
457                 -- in   type Foo a = (b,b)
458                 -- Instead we just say b is out of scope
459                 {% do { (tc,tvs) <- checkSynHdr $2
460                       ; return (LL (TySynonym tc tvs $4)) } }
461
462         | data_or_newtype tycl_hdr constrs deriving
463                 { L (comb4 $1 $2 $3 $4) -- We need the location on tycl_hdr 
464                                         -- in case constrs and deriving are both empty
465                     (mkTyData (unLoc $1) (unLoc $2) Nothing (reverse (unLoc $3)) (unLoc $4)) }
466
467         | data_or_newtype tycl_hdr opt_kind_sig 
468                  'where' gadt_constrlist
469                  deriving
470                 { L (comb4 $1 $2 $4 $5)
471                     (mkTyData (unLoc $1) (unLoc $2) $3 (reverse (unLoc $5)) (unLoc $6)) }
472
473         | 'class' tycl_hdr fds where
474                 { let 
475                         (binds,sigs) = cvBindsAndSigs (unLoc $4)
476                   in
477                   L (comb4 $1 $2 $3 $4) (mkClassDecl (unLoc $2) (unLoc $3) sigs 
478                                           binds) }
479
480 data_or_newtype :: { Located NewOrData }
481         : 'data'        { L1 DataType }
482         | 'newtype'     { L1 NewType }
483
484 opt_kind_sig :: { Maybe Kind }
485         :                               { Nothing }
486         | '::' kind                     { Just $2 }
487
488 -- tycl_hdr parses the header of a type or class decl,
489 -- which takes the form
490 --      T a b
491 --      Eq a => T a
492 --      (Eq a, Ord b) => T a b
493 -- Rather a lot of inlining here, else we get reduce/reduce errors
494 tycl_hdr :: { Located (LHsContext RdrName, Located RdrName, [LHsTyVarBndr RdrName]) }
495         : context '=>' type             {% checkTyClHdr $1         $3 >>= return.LL }
496         | type                          {% checkTyClHdr (noLoc []) $1 >>= return.L1 }
497
498 -----------------------------------------------------------------------------
499 -- Nested declarations
500
501 decls   :: { Located (OrdList (LHsDecl RdrName)) }      
502         : decls ';' decl                { LL (unLoc $1 `appOL` unLoc $3) }
503         | decls ';'                     { LL (unLoc $1) }
504         | decl                          { $1 }
505         | {- empty -}                   { noLoc nilOL }
506
507
508 decllist :: { Located (OrdList (LHsDecl RdrName)) }
509         : '{'            decls '}'      { LL (unLoc $2) }
510         |     vocurly    decls close    { $2 }
511
512 where   :: { Located (OrdList (LHsDecl RdrName)) }
513                                 -- No implicit parameters
514         : 'where' decllist              { LL (unLoc $2) }
515         | {- empty -}                   { noLoc nilOL }
516
517 binds   ::  { Located (HsLocalBinds RdrName) }          -- May have implicit parameters
518         : decllist                      { L1 (HsValBinds (cvBindGroup (unLoc $1))) }
519         | '{'            dbinds '}'     { LL (HsIPBinds (IPBinds (unLoc $2) emptyLHsBinds)) }
520         |     vocurly    dbinds close   { L (getLoc $2) (HsIPBinds (IPBinds (unLoc $2) emptyLHsBinds)) }
521
522 wherebinds :: { Located (HsLocalBinds RdrName) }        -- May have implicit parameters
523         : 'where' binds                 { LL (unLoc $2) }
524         | {- empty -}                   { noLoc emptyLocalBinds }
525
526
527 -----------------------------------------------------------------------------
528 -- Transformation Rules
529
530 rules   :: { OrdList (LHsDecl RdrName) }
531         :  rules ';' rule                       { $1 `snocOL` $3 }
532         |  rules ';'                            { $1 }
533         |  rule                                 { unitOL $1 }
534         |  {- empty -}                          { nilOL }
535
536 rule    :: { LHsDecl RdrName }
537         : STRING activation rule_forall infixexp '=' exp
538              { LL $ RuleD (HsRule (getSTRING $1) 
539                                   ($2 `orElse` AlwaysActive) 
540                                   $3 $4 placeHolderNames $6 placeHolderNames) }
541
542 activation :: { Maybe Activation } 
543         : {- empty -}                           { Nothing }
544         | explicit_activation                   { Just $1 }
545
546 explicit_activation :: { Activation }  -- In brackets
547         : '[' INTEGER ']'               { ActiveAfter  (fromInteger (getINTEGER $2)) }
548         | '[' '~' INTEGER ']'           { ActiveBefore (fromInteger (getINTEGER $3)) }
549
550 rule_forall :: { [RuleBndr RdrName] }
551         : 'forall' rule_var_list '.'            { $2 }
552         | {- empty -}                           { [] }
553
554 rule_var_list :: { [RuleBndr RdrName] }
555         : rule_var                              { [$1] }
556         | rule_var rule_var_list                { $1 : $2 }
557
558 rule_var :: { RuleBndr RdrName }
559         : varid                                 { RuleBndr $1 }
560         | '(' varid '::' ctype ')'              { RuleBndrSig $2 $4 }
561
562 -----------------------------------------------------------------------------
563 -- Deprecations (c.f. rules)
564
565 deprecations :: { OrdList (LHsDecl RdrName) }
566         : deprecations ';' deprecation          { $1 `appOL` $3 }
567         | deprecations ';'                      { $1 }
568         | deprecation                           { $1 }
569         | {- empty -}                           { nilOL }
570
571 -- SUP: TEMPORARY HACK, not checking for `module Foo'
572 deprecation :: { OrdList (LHsDecl RdrName) }
573         : depreclist STRING
574                 { toOL [ LL $ DeprecD (Deprecation n (getSTRING $2)) 
575                        | n <- unLoc $1 ] }
576
577
578 -----------------------------------------------------------------------------
579 -- Foreign import and export declarations
580
581 -- for the time being, the following accepts foreign declarations conforming
582 -- to the FFI Addendum, Version 1.0 as well as pre-standard declarations
583 --
584 -- * a flag indicates whether pre-standard declarations have been used and
585 --   triggers a deprecation warning further down the road
586 --
587 -- NB: The first two rules could be combined into one by replacing `safety1'
588 --     with `safety'.  However, the combined rule conflicts with the
589 --     DEPRECATED rules.
590 --
591 fdecl :: { LHsDecl RdrName }
592 fdecl : 'import' callconv safety1 fspec
593                 {% mkImport $2 $3 (unLoc $4) >>= return.LL }
594       | 'import' callconv         fspec         
595                 {% do { d <- mkImport $2 (PlaySafe False) (unLoc $3);
596                         return (LL d) } }
597       | 'export' callconv fspec
598                 {% mkExport $2 (unLoc $3) >>= return.LL }
599         -- the following syntax is DEPRECATED
600       | fdecl1DEPRECATED                        { L1 (ForD (unLoc $1)) }
601       | fdecl2DEPRECATED                        { L1 (unLoc $1) }
602
603 fdecl1DEPRECATED :: { LForeignDecl RdrName }
604 fdecl1DEPRECATED 
605   ----------- DEPRECATED label decls ------------
606   : 'label' ext_name varid '::' sigtype
607     { LL $ ForeignImport $3 $5 (CImport defaultCCallConv (PlaySafe False) nilFS nilFS 
608                                    (CLabel ($2 `orElse` mkExtName (unLoc $3)))) True }
609
610   ----------- DEPRECATED ccall/stdcall decls ------------
611   --
612   -- NB: This business with the case expression below may seem overly
613   --     complicated, but it is necessary to avoid some conflicts.
614
615     -- DEPRECATED variant #1: lack of a calling convention specification
616     --                        (import) 
617   | 'import' {-no callconv-} ext_name safety varid_no_unsafe '::' sigtype
618     { let
619         target = StaticTarget ($2 `orElse` mkExtName (unLoc $4))
620       in
621       LL $ ForeignImport $4 $6 (CImport defaultCCallConv $3 nilFS nilFS 
622                                    (CFunction target)) True }
623
624     -- DEPRECATED variant #2: external name consists of two separate strings
625     --                        (module name and function name) (import)
626   | 'import' callconv STRING STRING safety varid_no_unsafe '::' sigtype
627     {% case $2 of
628          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
629          CCall cconv -> return $
630            let
631              imp = CFunction (StaticTarget (getSTRING $4))
632            in
633            LL $ ForeignImport $6 $8 (CImport cconv $5 nilFS nilFS imp) True }
634
635     -- DEPRECATED variant #3: `unsafe' after entity
636   | 'import' callconv STRING 'unsafe' varid_no_unsafe '::' sigtype
637     {% case $2 of
638          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
639          CCall cconv -> return $
640            let
641              imp = CFunction (StaticTarget (getSTRING $3))
642            in
643            LL $ ForeignImport $5 $7 (CImport cconv PlayRisky nilFS nilFS imp) True }
644
645     -- DEPRECATED variant #4: use of the special identifier `dynamic' without
646     --                        an explicit calling convention (import)
647   | 'import' {-no callconv-} 'dynamic' safety varid_no_unsafe '::' sigtype
648     { LL $ ForeignImport $4 $6 (CImport defaultCCallConv $3 nilFS nilFS 
649                                    (CFunction DynamicTarget)) True }
650
651     -- DEPRECATED variant #5: use of the special identifier `dynamic' (import)
652   | 'import' callconv 'dynamic' safety varid_no_unsafe '::' sigtype
653     {% case $2 of
654          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
655          CCall cconv -> return $
656            LL $ ForeignImport $5 $7 (CImport cconv $4 nilFS nilFS 
657                                         (CFunction DynamicTarget)) True }
658
659     -- DEPRECATED variant #6: lack of a calling convention specification
660     --                        (export) 
661   | 'export' {-no callconv-} ext_name varid '::' sigtype
662     { LL $ ForeignExport $3 $5 (CExport (CExportStatic ($2 `orElse` mkExtName (unLoc $3))
663                                    defaultCCallConv)) True }
664
665     -- DEPRECATED variant #7: external name consists of two separate strings
666     --                        (module name and function name) (export)
667   | 'export' callconv STRING STRING varid '::' sigtype
668     {% case $2 of
669          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
670          CCall cconv -> return $
671            LL $ ForeignExport $5 $7 
672                          (CExport (CExportStatic (getSTRING $4) cconv)) True }
673
674     -- DEPRECATED variant #8: use of the special identifier `dynamic' without
675     --                        an explicit calling convention (export)
676   | 'export' {-no callconv-} 'dynamic' varid '::' sigtype
677     { LL $ ForeignImport $3 $5 (CImport defaultCCallConv (PlaySafe False) nilFS nilFS 
678                                    CWrapper) True }
679
680     -- DEPRECATED variant #9: use of the special identifier `dynamic' (export)
681   | 'export' callconv 'dynamic' varid '::' sigtype
682     {% case $2 of
683          DNCall      -> parseError (comb2 $1 $>) "Illegal format of .NET foreign import"
684          CCall cconv -> return $
685            LL $ ForeignImport $4 $6 
686                  (CImport cconv (PlaySafe False) nilFS nilFS CWrapper) True }
687
688   ----------- DEPRECATED .NET decls ------------
689   -- NB: removed the .NET call declaration, as it is entirely subsumed
690   --     by the new standard FFI declarations
691
692 fdecl2DEPRECATED :: { LHsDecl RdrName }
693 fdecl2DEPRECATED 
694   : 'import' 'dotnet' 'type' ext_name tycon { LL $ TyClD (ForeignType $5 $4 DNType) }
695     -- left this one unchanged for the moment as type imports are not
696     -- covered currently by the FFI standard -=chak
697
698
699 callconv :: { CallConv }
700           : 'stdcall'                   { CCall  StdCallConv }
701           | 'ccall'                     { CCall  CCallConv   }
702           | 'dotnet'                    { DNCall             }
703
704 safety :: { Safety }
705         : 'unsafe'                      { PlayRisky }
706         | 'safe'                        { PlaySafe False }
707         | 'threadsafe'                  { PlaySafe True  }
708         | {- empty -}                   { PlaySafe False }
709
710 safety1 :: { Safety }
711         : 'unsafe'                      { PlayRisky }
712         | 'safe'                        { PlaySafe  False }
713         | 'threadsafe'                  { PlaySafe  True }
714           -- only needed to avoid conflicts with the DEPRECATED rules
715
716 fspec :: { Located (Located FastString, Located RdrName, LHsType RdrName) }
717        : STRING var '::' sigtype      { LL (L (getLoc $1) (getSTRING $1), $2, $4) }
718        |        var '::' sigtype      { LL (noLoc nilFS, $1, $3) }
719          -- if the entity string is missing, it defaults to the empty string;
720          -- the meaning of an empty entity string depends on the calling
721          -- convention
722
723 -- DEPRECATED syntax
724 ext_name :: { Maybe CLabelString }
725         : STRING                { Just (getSTRING $1) }
726         | STRING STRING         { Just (getSTRING $2) } -- Ignore "module name" for now
727         | {- empty -}           { Nothing }
728
729
730 -----------------------------------------------------------------------------
731 -- Type signatures
732
733 opt_sig :: { Maybe (LHsType RdrName) }
734         : {- empty -}                   { Nothing }
735         | '::' sigtype                  { Just $2 }
736
737 opt_asig :: { Maybe (LHsType RdrName) }
738         : {- empty -}                   { Nothing }
739         | '::' atype                    { Just $2 }
740
741 sigtypes1 :: { [LHsType RdrName] }
742         : sigtype                       { [ $1 ] }
743         | sigtype ',' sigtypes1         { $1 : $3 }
744
745 sigtype :: { LHsType RdrName }
746         : ctype                         { L1 (mkImplicitHsForAllTy (noLoc []) $1) }
747         -- Wrap an Implicit forall if there isn't one there already
748
749 sig_vars :: { Located [Located RdrName] }
750          : sig_vars ',' var             { LL ($3 : unLoc $1) }
751          | var                          { L1 [$1] }
752
753 -----------------------------------------------------------------------------
754 -- Types
755
756 strict_mark :: { Located HsBang }
757         : '!'                           { L1 HsStrict }
758         | '{-# UNPACK' '#-}' '!'        { LL HsUnbox }
759
760 -- A ctype is a for-all type
761 ctype   :: { LHsType RdrName }
762         : 'forall' tv_bndrs '.' ctype   { LL $ mkExplicitHsForAllTy $2 (noLoc []) $4 }
763         | context '=>' type             { LL $ mkImplicitHsForAllTy   $1 $3 }
764         -- A type of form (context => type) is an *implicit* HsForAllTy
765         | type                          { $1 }
766
767 -- We parse a context as a btype so that we don't get reduce/reduce
768 -- errors in ctype.  The basic problem is that
769 --      (Eq a, Ord a)
770 -- looks so much like a tuple type.  We can't tell until we find the =>
771 context :: { LHsContext RdrName }
772         : btype                         {% checkContext $1 }
773
774 type :: { LHsType RdrName }
775         : ipvar '::' gentype            { LL (HsPredTy (HsIParam (unLoc $1) $3)) }
776         | gentype                       { $1 }
777
778 gentype :: { LHsType RdrName }
779         : btype                         { $1 }
780         | btype qtyconop gentype        { LL $ HsOpTy $1 $2 $3 }
781         | btype tyvarop  gentype        { LL $ HsOpTy $1 $2 $3 }
782         | btype '->' ctype              { LL $ HsFunTy $1 $3 }
783
784 btype :: { LHsType RdrName }
785         : btype atype                   { LL $ HsAppTy $1 $2 }
786         | atype                         { $1 }
787
788 atype :: { LHsType RdrName }
789         : gtycon                        { L1 (HsTyVar (unLoc $1)) }
790         | tyvar                         { L1 (HsTyVar (unLoc $1)) }
791         | strict_mark atype             { LL (HsBangTy (unLoc $1) $2) }
792         | '(' ctype ',' comma_types1 ')'  { LL $ HsTupleTy Boxed  ($2:$4) }
793         | '(#' comma_types1 '#)'        { LL $ HsTupleTy Unboxed $2     }
794         | '[' ctype ']'                 { LL $ HsListTy  $2 }
795         | '[:' ctype ':]'               { LL $ HsPArrTy  $2 }
796         | '(' ctype ')'                 { LL $ HsParTy   $2 }
797         | '(' ctype '::' kind ')'       { LL $ HsKindSig $2 $4 }
798 -- Generics
799         | INTEGER                       { L1 (HsNumTy (getINTEGER $1)) }
800
801 -- An inst_type is what occurs in the head of an instance decl
802 --      e.g.  (Foo a, Gaz b) => Wibble a b
803 -- It's kept as a single type, with a MonoDictTy at the right
804 -- hand corner, for convenience.
805 inst_type :: { LHsType RdrName }
806         : sigtype                       {% checkInstType $1 }
807
808 inst_types1 :: { [LHsType RdrName] }
809         : inst_type                     { [$1] }
810         | inst_type ',' inst_types1     { $1 : $3 }
811
812 comma_types0  :: { [LHsType RdrName] }
813         : comma_types1                  { $1 }
814         | {- empty -}                   { [] }
815
816 comma_types1    :: { [LHsType RdrName] }
817         : ctype                         { [$1] }
818         | ctype  ',' comma_types1       { $1 : $3 }
819
820 tv_bndrs :: { [LHsTyVarBndr RdrName] }
821          : tv_bndr tv_bndrs             { $1 : $2 }
822          | {- empty -}                  { [] }
823
824 tv_bndr :: { LHsTyVarBndr RdrName }
825         : tyvar                         { L1 (UserTyVar (unLoc $1)) }
826         | '(' tyvar '::' kind ')'       { LL (KindedTyVar (unLoc $2) $4) }
827
828 fds :: { Located [Located ([RdrName], [RdrName])] }
829         : {- empty -}                   { noLoc [] }
830         | '|' fds1                      { LL (reverse (unLoc $2)) }
831
832 fds1 :: { Located [Located ([RdrName], [RdrName])] }
833         : fds1 ',' fd                   { LL ($3 : unLoc $1) }
834         | fd                            { L1 [$1] }
835
836 fd :: { Located ([RdrName], [RdrName]) }
837         : varids0 '->' varids0          { L (comb3 $1 $2 $3)
838                                            (reverse (unLoc $1), reverse (unLoc $3)) }
839
840 varids0 :: { Located [RdrName] }
841         : {- empty -}                   { noLoc [] }
842         | varids0 tyvar                 { LL (unLoc $2 : unLoc $1) }
843
844 -----------------------------------------------------------------------------
845 -- Kinds
846
847 kind    :: { Kind }
848         : akind                 { $1 }
849         | akind '->' kind       { mkArrowKind $1 $3 }
850
851 akind   :: { Kind }
852         : '*'                   { liftedTypeKind }
853         | '!'                   { unliftedTypeKind }
854         | '(' kind ')'          { $2 }
855
856
857 -----------------------------------------------------------------------------
858 -- Datatype declarations
859
860 gadt_constrlist :: { Located [LConDecl RdrName] }
861         : '{'            gadt_constrs '}'       { LL (unLoc $2) }
862         |     vocurly    gadt_constrs close     { $2 }
863
864 gadt_constrs :: { Located [LConDecl RdrName] }
865         : gadt_constrs ';' gadt_constr  { LL ($3 : unLoc $1) }
866         | gadt_constrs ';'              { $1 }
867         | gadt_constr                   { L1 [$1] } 
868
869 -- We allow the following forms:
870 --      C :: Eq a => a -> T a
871 --      C :: forall a. Eq a => !a -> T a
872 --      D { x,y :: a } :: T a
873 --      forall a. Eq a => D { x,y :: a } :: T a
874
875 gadt_constr :: { LConDecl RdrName }
876         : con '::' sigtype
877               { LL (mkGadtDecl $1 $3) } 
878         -- Syntax: Maybe merge the record stuff with the single-case above?
879         --         (to kill the mostly harmless reduce/reduce error)
880         -- XXX revisit autrijus
881         | constr_stuff_record '::' sigtype
882                 { let (con,details) = unLoc $1 in 
883                   LL (ConDecl con Implicit [] (noLoc []) details (ResTyGADT $3)) }
884 {-
885         | forall context '=>' constr_stuff_record '::' sigtype
886                 { let (con,details) = unLoc $4 in 
887                   LL (ConDecl con Implicit (unLoc $1) $2 details (ResTyGADT $6)) }
888         | forall constr_stuff_record '::' sigtype
889                 { let (con,details) = unLoc $2 in 
890                   LL (ConDecl con Implicit (unLoc $1) (noLoc []) details (ResTyGADT $4)) }
891 -}
892
893
894 constrs :: { Located [LConDecl RdrName] }
895         : {- empty; a GHC extension -}  { noLoc [] }
896         | '=' constrs1                  { LL (unLoc $2) }
897
898 constrs1 :: { Located [LConDecl RdrName] }
899         : constrs1 '|' constr           { LL ($3 : unLoc $1) }
900         | constr                        { L1 [$1] }
901
902 constr :: { LConDecl RdrName }
903         : forall context '=>' constr_stuff      
904                 { let (con,details) = unLoc $4 in 
905                   LL (ConDecl con Explicit (unLoc $1) $2 details ResTyH98) }
906         | forall constr_stuff
907                 { let (con,details) = unLoc $2 in 
908                   LL (ConDecl con Explicit (unLoc $1) (noLoc []) details ResTyH98) }
909
910 forall :: { Located [LHsTyVarBndr RdrName] }
911         : 'forall' tv_bndrs '.'         { LL $2 }
912         | {- empty -}                   { noLoc [] }
913
914 constr_stuff :: { Located (Located RdrName, HsConDetails RdrName (LBangType RdrName)) }
915 -- We parse the constructor declaration 
916 --      C t1 t2
917 -- as a btype (treating C as a type constructor) and then convert C to be
918 -- a data constructor.  Reason: it might continue like this:
919 --      C t1 t2 %: D Int
920 -- in which case C really would be a type constructor.  We can't resolve this
921 -- ambiguity till we come across the constructor oprerator :% (or not, more usually)
922         : btype                         {% mkPrefixCon $1 [] >>= return.LL }
923         | oqtycon '{' '}'               {% mkRecCon $1 [] >>= return.LL }
924         | oqtycon '{' fielddecls '}'    {% mkRecCon $1 $3 >>= return.LL }
925         | btype conop btype             { LL ($2, InfixCon $1 $3) }
926
927 constr_stuff_record :: { Located (Located RdrName, HsConDetails RdrName (LBangType RdrName)) }
928         : oqtycon '{' '}'               {% mkRecCon $1 [] >>= return.sL (comb2 $1 $>) }
929         | oqtycon '{' fielddecls '}'    {% mkRecCon $1 $3 >>= return.sL (comb2 $1 $>) }
930
931 fielddecls :: { [([Located RdrName], LBangType RdrName)] }
932         : fielddecl ',' fielddecls      { unLoc $1 : $3 }
933         | fielddecl                     { [unLoc $1] }
934
935 fielddecl :: { Located ([Located RdrName], LBangType RdrName) }
936         : sig_vars '::' ctype           { LL (reverse (unLoc $1), $3) }
937
938 -- We allow the odd-looking 'inst_type' in a deriving clause, so that
939 -- we can do deriving( forall a. C [a] ) in a newtype (GHC extension).
940 -- The 'C [a]' part is converted to an HsPredTy by checkInstType
941 -- We don't allow a context, but that's sorted out by the type checker.
942 deriving :: { Located (Maybe [LHsType RdrName]) }
943         : {- empty -}                           { noLoc Nothing }
944         | 'deriving' qtycon     {% do { let { L loc tv = $2 }
945                                       ; p <- checkInstType (L loc (HsTyVar tv))
946                                       ; return (LL (Just [p])) } }
947         | 'deriving' '(' ')'                    { LL (Just []) }
948         | 'deriving' '(' inst_types1 ')'        { LL (Just $3) }
949              -- Glasgow extension: allow partial 
950              -- applications in derivings
951
952 -----------------------------------------------------------------------------
953 -- Value definitions
954
955 {- There's an awkward overlap with a type signature.  Consider
956         f :: Int -> Int = ...rhs...
957    Then we can't tell whether it's a type signature or a value
958    definition with a result signature until we see the '='.
959    So we have to inline enough to postpone reductions until we know.
960 -}
961
962 {-
963   ATTENTION: Dirty Hackery Ahead! If the second alternative of vars is var
964   instead of qvar, we get another shift/reduce-conflict. Consider the
965   following programs:
966   
967      { (^^) :: Int->Int ; }          Type signature; only var allowed
968
969      { (^^) :: Int->Int = ... ; }    Value defn with result signature;
970                                      qvar allowed (because of instance decls)
971   
972   We can't tell whether to reduce var to qvar until after we've read the signatures.
973 -}
974
975 decl    :: { Located (OrdList (LHsDecl RdrName)) }
976         : sigdecl                       { $1 }
977         | '!' infixexp rhs              {% do { pat <- checkPattern $2;
978                                                 return (LL $ unitOL $ LL $ ValD $ 
979                                                         PatBind (LL $ BangPat pat) (unLoc $3)
980                                                                 placeHolderType placeHolderNames) } }
981         | infixexp opt_sig rhs          {% do { r <- checkValDef $1 $2 $3;
982                                                 return (LL $ unitOL (LL $ ValD r)) } }
983
984 rhs     :: { Located (GRHSs RdrName) }
985         : '=' exp wherebinds    { L (comb3 $1 $2 $3) $ GRHSs (unguardedRHS $2) (unLoc $3) }
986         | gdrhs wherebinds      { LL $ GRHSs (reverse (unLoc $1)) (unLoc $2) }
987
988 gdrhs :: { Located [LGRHS RdrName] }
989         : gdrhs gdrh            { LL ($2 : unLoc $1) }
990         | gdrh                  { L1 [$1] }
991
992 gdrh :: { LGRHS RdrName }
993         : '|' quals '=' exp     { sL (comb2 $1 $>) $ GRHS (reverse (unLoc $2)) $4 }
994
995 sigdecl :: { Located (OrdList (LHsDecl RdrName)) }
996         : infixexp '::' sigtype
997                                 {% do s <- checkValSig $1 $3; 
998                                       return (LL $ unitOL (LL $ SigD s)) }
999                 -- See the above notes for why we need infixexp here
1000         | var ',' sig_vars '::' sigtype 
1001                                 { LL $ toOL [ LL $ SigD (TypeSig n $5) | n <- $1 : unLoc $3 ] }
1002         | infix prec ops        { LL $ toOL [ LL $ SigD (FixSig (FixitySig n (Fixity $2 (unLoc $1))))
1003                                              | n <- unLoc $3 ] }
1004         | '{-# INLINE'   activation qvar '#-}'        
1005                                 { LL $ unitOL (LL $ SigD (InlineSig $3 (mkInlineSpec $2 (getINLINE $1)))) }
1006         | '{-# SPECIALISE' qvar '::' sigtypes1 '#-}'
1007                                 { LL $ toOL [ LL $ SigD (SpecSig $2 t defaultInlineSpec)
1008                                             | t <- $4] }
1009         | '{-# SPECIALISE_INLINE' activation qvar '::' sigtypes1 '#-}'
1010                                 { LL $ toOL [ LL $ SigD (SpecSig $3 t (mkInlineSpec $2 (getSPEC_INLINE $1)))
1011                                             | t <- $5] }
1012         | '{-# SPECIALISE' 'instance' inst_type '#-}'
1013                                 { LL $ unitOL (LL $ SigD (SpecInstSig $3)) }
1014
1015 -----------------------------------------------------------------------------
1016 -- Expressions
1017
1018 exp   :: { LHsExpr RdrName }
1019         : infixexp '::' sigtype         { LL $ ExprWithTySig $1 $3 }
1020         | infixexp '-<' exp             { LL $ HsArrApp $1 $3 placeHolderType HsFirstOrderApp True }
1021         | infixexp '>-' exp             { LL $ HsArrApp $3 $1 placeHolderType HsFirstOrderApp False }
1022         | infixexp '-<<' exp            { LL $ HsArrApp $1 $3 placeHolderType HsHigherOrderApp True }
1023         | infixexp '>>-' exp            { LL $ HsArrApp $3 $1 placeHolderType HsHigherOrderApp False}
1024         | infixexp                      { $1 }
1025
1026 infixexp :: { LHsExpr RdrName }
1027         : exp10                         { $1 }
1028         | infixexp qop exp10            { LL (OpApp $1 $2 (panic "fixity") $3) }
1029
1030 exp10 :: { LHsExpr RdrName }
1031         : '\\' aexp aexps opt_asig '->' exp     
1032                         {% checkPatterns ($2 : reverse $3) >>= \ ps -> 
1033                            return (LL $ HsLam (mkMatchGroup [LL $ Match ps $4
1034                                             (GRHSs (unguardedRHS $6) emptyLocalBinds
1035                                                         )])) }
1036         | 'let' binds 'in' exp                  { LL $ HsLet (unLoc $2) $4 }
1037         | 'if' exp 'then' exp 'else' exp        { LL $ HsIf $2 $4 $6 }
1038         | 'case' exp 'of' altslist              { LL $ HsCase $2 (mkMatchGroup (unLoc $4)) }
1039         | '-' fexp                              { LL $ mkHsNegApp $2 }
1040
1041         | 'do' stmtlist                 {% let loc = comb2 $1 $2 in
1042                                            checkDo loc (unLoc $2)  >>= \ (stmts,body) ->
1043                                            return (L loc (mkHsDo DoExpr stmts body)) }
1044         | 'mdo' stmtlist                {% let loc = comb2 $1 $2 in
1045                                            checkDo loc (unLoc $2)  >>= \ (stmts,body) ->
1046                                            return (L loc (mkHsDo (MDoExpr noPostTcTable) stmts body)) }
1047         | scc_annot exp                         { LL $ if opt_SccProfilingOn
1048                                                         then HsSCC (unLoc $1) $2
1049                                                         else HsPar $2 }
1050
1051         | 'proc' aexp '->' exp  
1052                         {% checkPattern $2 >>= \ p -> 
1053                            return (LL $ HsProc p (LL $ HsCmdTop $4 [] 
1054                                                    placeHolderType undefined)) }
1055                                                 -- TODO: is LL right here?
1056
1057         | '{-# CORE' STRING '#-}' exp           { LL $ HsCoreAnn (getSTRING $2) $4 }
1058                                                     -- hdaume: core annotation
1059         | fexp                                  { $1 }
1060
1061 scc_annot :: { Located FastString }
1062         : '_scc_' STRING                        { LL $ getSTRING $2 }
1063         | '{-# SCC' STRING '#-}'                { LL $ getSTRING $2 }
1064
1065 fexp    :: { LHsExpr RdrName }
1066         : fexp aexp                             { LL $ HsApp $1 $2 }
1067         | aexp                                  { $1 }
1068
1069 aexps   :: { [LHsExpr RdrName] }
1070         : aexps aexp                            { $2 : $1 }
1071         | {- empty -}                           { [] }
1072
1073 aexp    :: { LHsExpr RdrName }
1074         : qvar '@' aexp                 { LL $ EAsPat $1 $3 }
1075         | '~' aexp                      { LL $ ELazyPat $2 }
1076 --      | '!' aexp                      { LL $ EBangPat $2 }
1077         | aexp1                         { $1 }
1078
1079 aexp1   :: { LHsExpr RdrName }
1080         : aexp1 '{' fbinds '}'  {% do { r <- mkRecConstrOrUpdate $1 (comb2 $2 $4) 
1081                                                         (reverse $3);
1082                                         return (LL r) }}
1083         | aexp2                 { $1 }
1084
1085 -- Here was the syntax for type applications that I was planning
1086 -- but there are difficulties (e.g. what order for type args)
1087 -- so it's not enabled yet.
1088 -- But this case *is* used for the left hand side of a generic definition,
1089 -- which is parsed as an expression before being munged into a pattern
1090         | qcname '{|' gentype '|}'      { LL $ HsApp (sL (getLoc $1) (HsVar (unLoc $1)))
1091                                                      (sL (getLoc $3) (HsType $3)) }
1092
1093 aexp2   :: { LHsExpr RdrName }
1094         : ipvar                         { L1 (HsIPVar $! unLoc $1) }
1095         | qcname                        { L1 (HsVar   $! unLoc $1) }
1096         | literal                       { L1 (HsLit   $! unLoc $1) }
1097         | INTEGER                       { L1 (HsOverLit $! mkHsIntegral (getINTEGER $1)) }
1098         | RATIONAL                      { L1 (HsOverLit $! mkHsFractional (getRATIONAL $1)) }
1099         | '(' exp ')'                   { LL (HsPar $2) }
1100         | '(' texp ',' texps ')'        { LL $ ExplicitTuple ($2 : reverse $4) Boxed }
1101         | '(#' texps '#)'               { LL $ ExplicitTuple (reverse $2)      Unboxed }
1102         | '[' list ']'                  { LL (unLoc $2) }
1103         | '[:' parr ':]'                { LL (unLoc $2) }
1104         | '(' infixexp qop ')'          { LL $ SectionL $2 $3 }
1105         | '(' qopm infixexp ')'         { LL $ SectionR $2 $3 }
1106         | '_'                           { L1 EWildPat }
1107         
1108         -- Template Haskell Extension
1109         | TH_ID_SPLICE          { L1 $ HsSpliceE (mkHsSplice 
1110                                         (L1 $ HsVar (mkUnqual varName 
1111                                                         (getTH_ID_SPLICE $1)))) } -- $x
1112         | '$(' exp ')'          { LL $ HsSpliceE (mkHsSplice $2) }               -- $( exp )
1113
1114         | TH_VAR_QUOTE qvar     { LL $ HsBracket (VarBr (unLoc $2)) }
1115         | TH_VAR_QUOTE qcon     { LL $ HsBracket (VarBr (unLoc $2)) }
1116         | TH_TY_QUOTE tyvar     { LL $ HsBracket (VarBr (unLoc $2)) }
1117         | TH_TY_QUOTE gtycon    { LL $ HsBracket (VarBr (unLoc $2)) }
1118         | '[|' exp '|]'         { LL $ HsBracket (ExpBr $2) }                       
1119         | '[t|' ctype '|]'      { LL $ HsBracket (TypBr $2) }                       
1120         | '[p|' infixexp '|]'   {% checkPattern $2 >>= \p ->
1121                                            return (LL $ HsBracket (PatBr p)) }
1122         | '[d|' cvtopbody '|]'  { LL $ HsBracket (DecBr (mkGroup $2)) }
1123
1124         -- arrow notation extension
1125         | '(|' aexp2 cmdargs '|)'       { LL $ HsArrForm $2 Nothing (reverse $3) }
1126
1127 cmdargs :: { [LHsCmdTop RdrName] }
1128         : cmdargs acmd                  { $2 : $1 }
1129         | {- empty -}                   { [] }
1130
1131 acmd    :: { LHsCmdTop RdrName }
1132         : aexp2                 { L1 $ HsCmdTop $1 [] placeHolderType undefined }
1133
1134 cvtopbody :: { [LHsDecl RdrName] }
1135         :  '{'            cvtopdecls0 '}'               { $2 }
1136         |      vocurly    cvtopdecls0 close             { $2 }
1137
1138 cvtopdecls0 :: { [LHsDecl RdrName] }
1139         : {- empty -}           { [] }
1140         | cvtopdecls            { $1 }
1141
1142 texp :: { LHsExpr RdrName }
1143         : exp                           { $1 }
1144         | qopm infixexp                 { LL $ SectionR $1 $2 }
1145         -- The second production is really here only for bang patterns
1146         -- but 
1147
1148 texps :: { [LHsExpr RdrName] }
1149         : texps ',' texp                { $3 : $1 }
1150         | texp                          { [$1] }
1151
1152
1153 -----------------------------------------------------------------------------
1154 -- List expressions
1155
1156 -- The rules below are little bit contorted to keep lexps left-recursive while
1157 -- avoiding another shift/reduce-conflict.
1158
1159 list :: { LHsExpr RdrName }
1160         : texp                  { L1 $ ExplicitList placeHolderType [$1] }
1161         | lexps                 { L1 $ ExplicitList placeHolderType (reverse (unLoc $1)) }
1162         | texp '..'             { LL $ ArithSeq noPostTcExpr (From $1) }
1163         | texp ',' exp '..'     { LL $ ArithSeq noPostTcExpr (FromThen $1 $3) }
1164         | texp '..' exp         { LL $ ArithSeq noPostTcExpr (FromTo $1 $3) }
1165         | texp ',' exp '..' exp { LL $ ArithSeq noPostTcExpr (FromThenTo $1 $3 $5) }
1166         | texp pquals           { sL (comb2 $1 $>) $ mkHsDo ListComp (reverse (unLoc $2)) $1 }
1167
1168 lexps :: { Located [LHsExpr RdrName] }
1169         : lexps ',' texp                { LL ($3 : unLoc $1) }
1170         | texp ',' texp                 { LL [$3,$1] }
1171
1172 -----------------------------------------------------------------------------
1173 -- List Comprehensions
1174
1175 pquals :: { Located [LStmt RdrName] }   -- Either a singleton ParStmt, 
1176                                         -- or a reversed list of Stmts
1177         : pquals1                       { case unLoc $1 of
1178                                             [qs] -> L1 qs
1179                                             qss  -> L1 [L1 (ParStmt stmtss)]
1180                                                  where
1181                                                     stmtss = [ (reverse qs, undefined) 
1182                                                              | qs <- qss ]
1183                                         }
1184                         
1185 pquals1 :: { Located [[LStmt RdrName]] }
1186         : pquals1 '|' quals             { LL (unLoc $3 : unLoc $1) }
1187         | '|' quals                     { L (getLoc $2) [unLoc $2] }
1188
1189 quals :: { Located [LStmt RdrName] }
1190         : quals ',' qual                { LL ($3 : unLoc $1) }
1191         | qual                          { L1 [$1] }
1192
1193 -----------------------------------------------------------------------------
1194 -- Parallel array expressions
1195
1196 -- The rules below are little bit contorted; see the list case for details.
1197 -- Note that, in contrast to lists, we only have finite arithmetic sequences.
1198 -- Moreover, we allow explicit arrays with no element (represented by the nil
1199 -- constructor in the list case).
1200
1201 parr :: { LHsExpr RdrName }
1202         :                               { noLoc (ExplicitPArr placeHolderType []) }
1203         | exp                           { L1 $ ExplicitPArr placeHolderType [$1] }
1204         | lexps                         { L1 $ ExplicitPArr placeHolderType 
1205                                                        (reverse (unLoc $1)) }
1206         | exp '..' exp                  { LL $ PArrSeq noPostTcExpr (FromTo $1 $3) }
1207         | exp ',' exp '..' exp          { LL $ PArrSeq noPostTcExpr (FromThenTo $1 $3 $5) }
1208         | exp pquals                    { sL (comb2 $1 $>) $ mkHsDo PArrComp (reverse (unLoc $2)) $1 }
1209
1210 -- We are reusing `lexps' and `pquals' from the list case.
1211
1212 -----------------------------------------------------------------------------
1213 -- Case alternatives
1214
1215 altslist :: { Located [LMatch RdrName] }
1216         : '{'            alts '}'       { LL (reverse (unLoc $2)) }
1217         |     vocurly    alts  close    { L (getLoc $2) (reverse (unLoc $2)) }
1218
1219 alts    :: { Located [LMatch RdrName] }
1220         : alts1                         { L1 (unLoc $1) }
1221         | ';' alts                      { LL (unLoc $2) }
1222
1223 alts1   :: { Located [LMatch RdrName] }
1224         : alts1 ';' alt                 { LL ($3 : unLoc $1) }
1225         | alts1 ';'                     { LL (unLoc $1) }
1226         | alt                           { L1 [$1] }
1227
1228 alt     :: { LMatch RdrName }
1229         : infixexp opt_sig alt_rhs      {%  checkPattern $1 >>= \p ->
1230                                             return (LL (Match [p] $2 (unLoc $3))) }
1231
1232 alt_rhs :: { Located (GRHSs RdrName) }
1233         : ralt wherebinds               { LL (GRHSs (unLoc $1) (unLoc $2)) }
1234
1235 ralt :: { Located [LGRHS RdrName] }
1236         : '->' exp                      { LL (unguardedRHS $2) }
1237         | gdpats                        { L1 (reverse (unLoc $1)) }
1238
1239 gdpats :: { Located [LGRHS RdrName] }
1240         : gdpats gdpat                  { LL ($2 : unLoc $1) }
1241         | gdpat                         { L1 [$1] }
1242
1243 gdpat   :: { LGRHS RdrName }
1244         : '|' quals '->' exp            { sL (comb2 $1 $>) $ GRHS (reverse (unLoc $2)) $4 }
1245
1246 -----------------------------------------------------------------------------
1247 -- Statement sequences
1248
1249 stmtlist :: { Located [LStmt RdrName] }
1250         : '{'           stmts '}'       { LL (unLoc $2) }
1251         |     vocurly   stmts close     { $2 }
1252
1253 --      do { ;; s ; s ; ; s ;; }
1254 -- The last Stmt should be an expression, but that's hard to enforce
1255 -- here, because we need too much lookahead if we see do { e ; }
1256 -- So we use ExprStmts throughout, and switch the last one over
1257 -- in ParseUtils.checkDo instead
1258 stmts :: { Located [LStmt RdrName] }
1259         : stmt stmts_help               { LL ($1 : unLoc $2) }
1260         | ';' stmts                     { LL (unLoc $2) }
1261         | {- empty -}                   { noLoc [] }
1262
1263 stmts_help :: { Located [LStmt RdrName] } -- might be empty
1264         : ';' stmts                     { LL (unLoc $2) }
1265         | {- empty -}                   { noLoc [] }
1266
1267 -- For typing stmts at the GHCi prompt, where 
1268 -- the input may consist of just comments.
1269 maybe_stmt :: { Maybe (LStmt RdrName) }
1270         : stmt                          { Just $1 }
1271         | {- nothing -}                 { Nothing }
1272
1273 stmt  :: { LStmt RdrName }
1274         : qual                          { $1 }
1275         | infixexp '->' exp             {% checkPattern $3 >>= \p ->
1276                                            return (LL $ mkBindStmt p $1) }
1277         | 'rec' stmtlist                { LL $ mkRecStmt (unLoc $2) }
1278
1279 qual  :: { LStmt RdrName }
1280         : exp '<-' exp                  {% checkPattern $1 >>= \p ->
1281                                            return (LL $ mkBindStmt p $3) }
1282         | exp                           { L1 $ mkExprStmt $1 }
1283         | 'let' binds                   { LL $ LetStmt (unLoc $2) }
1284
1285 -----------------------------------------------------------------------------
1286 -- Record Field Update/Construction
1287
1288 fbinds  :: { HsRecordBinds RdrName }
1289         : fbinds1                       { $1 }
1290         | {- empty -}                   { [] }
1291
1292 fbinds1 :: { HsRecordBinds RdrName }
1293         : fbinds1 ',' fbind             { $3 : $1 }
1294         | fbind                         { [$1] }
1295   
1296 fbind   :: { (Located RdrName, LHsExpr RdrName) }
1297         : qvar '=' exp                  { ($1,$3) }
1298
1299 -----------------------------------------------------------------------------
1300 -- Implicit Parameter Bindings
1301
1302 dbinds  :: { Located [LIPBind RdrName] }
1303         : dbinds ';' dbind              { LL ($3 : unLoc $1) }
1304         | dbinds ';'                    { LL (unLoc $1) }
1305         | dbind                         { L1 [$1] }
1306 --      | {- empty -}                   { [] }
1307
1308 dbind   :: { LIPBind RdrName }
1309 dbind   : ipvar '=' exp                 { LL (IPBind (unLoc $1) $3) }
1310
1311 ipvar   :: { Located (IPName RdrName) }
1312         : IPDUPVARID            { L1 (Dupable (mkUnqual varName (getIPDUPVARID $1))) }
1313         | IPSPLITVARID          { L1 (Linear  (mkUnqual varName (getIPSPLITVARID $1))) }
1314
1315 -----------------------------------------------------------------------------
1316 -- Deprecations
1317
1318 depreclist :: { Located [RdrName] }
1319 depreclist : deprec_var                 { L1 [unLoc $1] }
1320            | deprec_var ',' depreclist  { LL (unLoc $1 : unLoc $3) }
1321
1322 deprec_var :: { Located RdrName }
1323 deprec_var : var                        { $1 }
1324            | con                        { $1 }
1325
1326 -----------------------------------------
1327 -- Data constructors
1328 qcon    :: { Located RdrName }
1329         : qconid                { $1 }
1330         | '(' qconsym ')'       { LL (unLoc $2) }
1331         | sysdcon               { L1 $ nameRdrName (dataConName (unLoc $1)) }
1332 -- The case of '[:' ':]' is part of the production `parr'
1333
1334 con     :: { Located RdrName }
1335         : conid                 { $1 }
1336         | '(' consym ')'        { LL (unLoc $2) }
1337         | sysdcon               { L1 $ nameRdrName (dataConName (unLoc $1)) }
1338
1339 sysdcon :: { Located DataCon }  -- Wired in data constructors
1340         : '(' ')'               { LL unitDataCon }
1341         | '(' commas ')'        { LL $ tupleCon Boxed $2 }
1342         | '[' ']'               { LL nilDataCon }
1343
1344 conop :: { Located RdrName }
1345         : consym                { $1 }  
1346         | '`' conid '`'         { LL (unLoc $2) }
1347
1348 qconop :: { Located RdrName }
1349         : qconsym               { $1 }
1350         | '`' qconid '`'        { LL (unLoc $2) }
1351
1352 -----------------------------------------------------------------------------
1353 -- Type constructors
1354
1355 gtycon  :: { Located RdrName }  -- A "general" qualified tycon
1356         : oqtycon                       { $1 }
1357         | '(' ')'                       { LL $ getRdrName unitTyCon }
1358         | '(' commas ')'                { LL $ getRdrName (tupleTyCon Boxed $2) }
1359         | '(' '->' ')'                  { LL $ getRdrName funTyCon }
1360         | '[' ']'                       { LL $ listTyCon_RDR }
1361         | '[:' ':]'                     { LL $ parrTyCon_RDR }
1362
1363 oqtycon :: { Located RdrName }  -- An "ordinary" qualified tycon
1364         : qtycon                        { $1 }
1365         | '(' qtyconsym ')'             { LL (unLoc $2) }
1366
1367 qtyconop :: { Located RdrName } -- Qualified or unqualified
1368         : qtyconsym                     { $1 }
1369         | '`' qtycon '`'                { LL (unLoc $2) }
1370
1371 qtycon :: { Located RdrName }   -- Qualified or unqualified
1372         : QCONID                        { L1 $! mkQual tcClsName (getQCONID $1) }
1373         | tycon                         { $1 }
1374
1375 tycon   :: { Located RdrName }  -- Unqualified
1376         : CONID                         { L1 $! mkUnqual tcClsName (getCONID $1) }
1377
1378 qtyconsym :: { Located RdrName }
1379         : QCONSYM                       { L1 $! mkQual tcClsName (getQCONSYM $1) }
1380         | tyconsym                      { $1 }
1381
1382 tyconsym :: { Located RdrName }
1383         : CONSYM                        { L1 $! mkUnqual tcClsName (getCONSYM $1) }
1384
1385 -----------------------------------------------------------------------------
1386 -- Operators
1387
1388 op      :: { Located RdrName }   -- used in infix decls
1389         : varop                 { $1 }
1390         | conop                 { $1 }
1391
1392 varop   :: { Located RdrName }
1393         : varsym                { $1 }
1394         | '`' varid '`'         { LL (unLoc $2) }
1395
1396 qop     :: { LHsExpr RdrName }   -- used in sections
1397         : qvarop                { L1 $ HsVar (unLoc $1) }
1398         | qconop                { L1 $ HsVar (unLoc $1) }
1399
1400 qopm    :: { LHsExpr RdrName }   -- used in sections
1401         : qvaropm               { L1 $ HsVar (unLoc $1) }
1402         | qconop                { L1 $ HsVar (unLoc $1) }
1403
1404 qvarop :: { Located RdrName }
1405         : qvarsym               { $1 }
1406         | '`' qvarid '`'        { LL (unLoc $2) }
1407
1408 qvaropm :: { Located RdrName }
1409         : qvarsym_no_minus      { $1 }
1410         | '`' qvarid '`'        { LL (unLoc $2) }
1411
1412 -----------------------------------------------------------------------------
1413 -- Type variables
1414
1415 tyvar   :: { Located RdrName }
1416 tyvar   : tyvarid               { $1 }
1417         | '(' tyvarsym ')'      { LL (unLoc $2) }
1418
1419 tyvarop :: { Located RdrName }
1420 tyvarop : '`' tyvarid '`'       { LL (unLoc $2) }
1421         | tyvarsym              { $1 }
1422
1423 tyvarid :: { Located RdrName }
1424         : VARID                 { L1 $! mkUnqual tvName (getVARID $1) }
1425         | special_id            { L1 $! mkUnqual tvName (unLoc $1) }
1426         | 'unsafe'              { L1 $! mkUnqual tvName FSLIT("unsafe") }
1427         | 'safe'                { L1 $! mkUnqual tvName FSLIT("safe") }
1428         | 'threadsafe'          { L1 $! mkUnqual tvName FSLIT("threadsafe") }
1429
1430 tyvarsym :: { Located RdrName }
1431 -- Does not include "!", because that is used for strictness marks
1432 --               or ".", because that separates the quantified type vars from the rest
1433 --               or "*", because that's used for kinds
1434 tyvarsym : VARSYM               { L1 $! mkUnqual tvName (getVARSYM $1) }
1435
1436 -----------------------------------------------------------------------------
1437 -- Variables 
1438
1439 var     :: { Located RdrName }
1440         : varid                 { $1 }
1441         | '(' varsym ')'        { LL (unLoc $2) }
1442
1443 qvar    :: { Located RdrName }
1444         : qvarid                { $1 }
1445         | '(' varsym ')'        { LL (unLoc $2) }
1446         | '(' qvarsym1 ')'      { LL (unLoc $2) }
1447 -- We've inlined qvarsym here so that the decision about
1448 -- whether it's a qvar or a var can be postponed until
1449 -- *after* we see the close paren.
1450
1451 qvarid :: { Located RdrName }
1452         : varid                 { $1 }
1453         | QVARID                { L1 $ mkQual varName (getQVARID $1) }
1454
1455 varid :: { Located RdrName }
1456         : varid_no_unsafe       { $1 }
1457         | 'unsafe'              { L1 $! mkUnqual varName FSLIT("unsafe") }
1458         | 'safe'                { L1 $! mkUnqual varName FSLIT("safe") }
1459         | 'threadsafe'          { L1 $! mkUnqual varName FSLIT("threadsafe") }
1460
1461 varid_no_unsafe :: { Located RdrName }
1462         : VARID                 { L1 $! mkUnqual varName (getVARID $1) }
1463         | special_id            { L1 $! mkUnqual varName (unLoc $1) }
1464         | 'forall'              { L1 $! mkUnqual varName FSLIT("forall") }
1465
1466 qvarsym :: { Located RdrName }
1467         : varsym                { $1 }
1468         | qvarsym1              { $1 }
1469
1470 qvarsym_no_minus :: { Located RdrName }
1471         : varsym_no_minus       { $1 }
1472         | qvarsym1              { $1 }
1473
1474 qvarsym1 :: { Located RdrName }
1475 qvarsym1 : QVARSYM              { L1 $ mkQual varName (getQVARSYM $1) }
1476
1477 varsym :: { Located RdrName }
1478         : varsym_no_minus       { $1 }
1479         | '-'                   { L1 $ mkUnqual varName FSLIT("-") }
1480
1481 varsym_no_minus :: { Located RdrName } -- varsym not including '-'
1482         : VARSYM                { L1 $ mkUnqual varName (getVARSYM $1) }
1483         | special_sym           { L1 $ mkUnqual varName (unLoc $1) }
1484
1485
1486 -- These special_ids are treated as keywords in various places, 
1487 -- but as ordinary ids elsewhere.   'special_id' collects all these
1488 -- except 'unsafe' and 'forall' whose treatment differs depending on context
1489 special_id :: { Located FastString }
1490 special_id
1491         : 'as'                  { L1 FSLIT("as") }
1492         | 'qualified'           { L1 FSLIT("qualified") }
1493         | 'hiding'              { L1 FSLIT("hiding") }
1494         | 'export'              { L1 FSLIT("export") }
1495         | 'label'               { L1 FSLIT("label")  }
1496         | 'dynamic'             { L1 FSLIT("dynamic") }
1497         | 'stdcall'             { L1 FSLIT("stdcall") }
1498         | 'ccall'               { L1 FSLIT("ccall") }
1499
1500 special_sym :: { Located FastString }
1501 special_sym : '!'       { L1 FSLIT("!") }
1502             | '.'       { L1 FSLIT(".") }
1503             | '*'       { L1 FSLIT("*") }
1504
1505 -----------------------------------------------------------------------------
1506 -- Data constructors
1507
1508 qconid :: { Located RdrName }   -- Qualified or unqualified
1509         : conid                 { $1 }
1510         | QCONID                { L1 $ mkQual dataName (getQCONID $1) }
1511
1512 conid   :: { Located RdrName }
1513         : CONID                 { L1 $ mkUnqual dataName (getCONID $1) }
1514
1515 qconsym :: { Located RdrName }  -- Qualified or unqualified
1516         : consym                { $1 }
1517         | QCONSYM               { L1 $ mkQual dataName (getQCONSYM $1) }
1518
1519 consym :: { Located RdrName }
1520         : CONSYM                { L1 $ mkUnqual dataName (getCONSYM $1) }
1521
1522         -- ':' means only list cons
1523         | ':'                   { L1 $ consDataCon_RDR }
1524
1525
1526 -----------------------------------------------------------------------------
1527 -- Literals
1528
1529 literal :: { Located HsLit }
1530         : CHAR                  { L1 $ HsChar       $ getCHAR $1 }
1531         | STRING                { L1 $ HsString     $ getSTRING $1 }
1532         | PRIMINTEGER           { L1 $ HsIntPrim    $ getPRIMINTEGER $1 }
1533         | PRIMCHAR              { L1 $ HsCharPrim   $ getPRIMCHAR $1 }
1534         | PRIMSTRING            { L1 $ HsStringPrim $ getPRIMSTRING $1 }
1535         | PRIMFLOAT             { L1 $ HsFloatPrim  $ getPRIMFLOAT $1 }
1536         | PRIMDOUBLE            { L1 $ HsDoublePrim $ getPRIMDOUBLE $1 }
1537
1538 -----------------------------------------------------------------------------
1539 -- Layout
1540
1541 close :: { () }
1542         : vccurly               { () } -- context popped in lexer.
1543         | error                 {% popContext }
1544
1545 -----------------------------------------------------------------------------
1546 -- Miscellaneous (mostly renamings)
1547
1548 modid   :: { Located ModuleName }
1549         : CONID                 { L1 $ mkModuleNameFS (getCONID $1) }
1550         | QCONID                { L1 $ let (mod,c) = getQCONID $1 in
1551                                   mkModuleNameFS
1552                                    (mkFastString
1553                                      (unpackFS mod ++ '.':unpackFS c))
1554                                 }
1555
1556 commas :: { Int }
1557         : commas ','                    { $1 + 1 }
1558         | ','                           { 2 }
1559
1560 -----------------------------------------------------------------------------
1561
1562 {
1563 happyError :: P a
1564 happyError = srcParseFail
1565
1566 getVARID        (L _ (ITvarid    x)) = x
1567 getCONID        (L _ (ITconid    x)) = x
1568 getVARSYM       (L _ (ITvarsym   x)) = x
1569 getCONSYM       (L _ (ITconsym   x)) = x
1570 getQVARID       (L _ (ITqvarid   x)) = x
1571 getQCONID       (L _ (ITqconid   x)) = x
1572 getQVARSYM      (L _ (ITqvarsym  x)) = x
1573 getQCONSYM      (L _ (ITqconsym  x)) = x
1574 getIPDUPVARID   (L _ (ITdupipvarid   x)) = x
1575 getIPSPLITVARID (L _ (ITsplitipvarid x)) = x
1576 getCHAR         (L _ (ITchar     x)) = x
1577 getSTRING       (L _ (ITstring   x)) = x
1578 getINTEGER      (L _ (ITinteger  x)) = x
1579 getRATIONAL     (L _ (ITrational x)) = x
1580 getPRIMCHAR     (L _ (ITprimchar   x)) = x
1581 getPRIMSTRING   (L _ (ITprimstring x)) = x
1582 getPRIMINTEGER  (L _ (ITprimint    x)) = x
1583 getPRIMFLOAT    (L _ (ITprimfloat  x)) = x
1584 getPRIMDOUBLE   (L _ (ITprimdouble x)) = x
1585 getTH_ID_SPLICE (L _ (ITidEscape x)) = x
1586 getINLINE       (L _ (ITinline_prag b)) = b
1587 getSPEC_INLINE  (L _ (ITspec_inline_prag b)) = b
1588
1589 -- Utilities for combining source spans
1590 comb2 :: Located a -> Located b -> SrcSpan
1591 comb2 = combineLocs
1592
1593 comb3 :: Located a -> Located b -> Located c -> SrcSpan
1594 comb3 a b c = combineSrcSpans (getLoc a) (combineSrcSpans (getLoc b) (getLoc c))
1595
1596 comb4 :: Located a -> Located b -> Located c -> Located d -> SrcSpan
1597 comb4 a b c d = combineSrcSpans (getLoc a) $ combineSrcSpans (getLoc b) $
1598                 combineSrcSpans (getLoc c) (getLoc d)
1599
1600 -- strict constructor version:
1601 {-# INLINE sL #-}
1602 sL :: SrcSpan -> a -> Located a
1603 sL span a = span `seq` L span a
1604
1605 -- Make a source location for the file.  We're a bit lazy here and just
1606 -- make a point SrcSpan at line 1, column 0.  Strictly speaking we should
1607 -- try to find the span of the whole file (ToDo).
1608 fileSrcSpan :: P SrcSpan
1609 fileSrcSpan = do 
1610   l <- getSrcLoc; 
1611   let loc = mkSrcLoc (srcLocFile l) 1 0;
1612   return (mkSrcSpan loc loc)
1613 }