Skip to content
Snippets Groups Projects
Commit 4bc7f9c8 authored by Luite Stegeman's avatar Luite Stegeman Committed by Marge Bot
Browse files

Parser: remove non-ASCII characters from Parser.y

Non-ASCII characters in the source causes a problem with the default
Haskell Language Server setup in VSCode. Two characters seems to have
been left in by accident.

Workaround for #25396
parent d6bfea76
No related branches found
No related tags found
No related merge requests found
Pipeline #102129 failed
......@@ -2160,11 +2160,11 @@ fspec :: { Located ([AddEpAnn]
-----------------------------------------------------------------------------
-- Type signatures
opt_sig :: { Maybe (EpUniToken "::" "", LHsType GhcPs) }
opt_sig :: { Maybe (EpUniToken "::" "\8759", LHsType GhcPs) }
: {- empty -} { Nothing }
| '::' ctype { Just (epUniTok $1, $2) }
opt_tyconsig :: { (Maybe (EpUniToken "::" ""), Maybe (LocatedN RdrName)) }
opt_tyconsig :: { (Maybe (EpUniToken "::" "\8759"), Maybe (LocatedN RdrName)) }
: {- empty -} { (Nothing, Nothing) }
| '::' gtycon { (Just (epUniTok $1), Just $2) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment