From: bjorn@bringert.net Date: Thu, 21 Sep 2006 05:20:53 +0000 (+0000) Subject: Made 'for' a special ID in the grammar. X-Git-Tag: 2006-10-05~9 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=35f950020ff9eb503f383c642e8be2562605211f Made 'for' a special ID in the grammar. --- diff --git a/compiler/parser/Parser.y.pp b/compiler/parser/Parser.y.pp index a57be91..18565a9 100644 --- a/compiler/parser/Parser.y.pp +++ b/compiler/parser/Parser.y.pp @@ -1577,6 +1577,7 @@ special_id : 'as' { L1 FSLIT("as") } | 'qualified' { L1 FSLIT("qualified") } | 'hiding' { L1 FSLIT("hiding") } + | 'for' { L1 FSLIT("for") } | 'export' { L1 FSLIT("export") } | 'label' { L1 FSLIT("label") } | 'dynamic' { L1 FSLIT("dynamic") }