Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4,262
Issues
4,262
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
404
Merge Requests
404
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
e343a6ca
Commit
e343a6ca
authored
Dec 08, 2006
by
simonpj@microsoft.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve parsing for bang patterns (fixes Trac
#1041
)
parent
76e26e9c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
18 deletions
+26
-18
compiler/parser/Parser.y.pp
compiler/parser/Parser.y.pp
+25
-18
compiler/parser/RdrHsSyn.lhs
compiler/parser/RdrHsSyn.lhs
+1
-0
No files found.
compiler/parser/Parser.y.pp
View file @
e343a6ca
...
@@ -1190,7 +1190,7 @@ docdecld :: { LDocDecl RdrName }
...
@@ -1190,7 +1190,7 @@ docdecld :: { LDocDecl RdrName }
decl :: { Located (OrdList (LHsDecl RdrName)) }
decl :: { Located (OrdList (LHsDecl RdrName)) }
: sigdecl { $1 }
: sigdecl { $1 }
| '
!
'
infixexp rhs
{% do { pat <- checkPattern $2;
| '
!
'
aexp rhs
{% do { pat <- checkPattern $2;
return (LL $ unitOL $ LL $ ValD (
return (LL $ unitOL $ LL $ ValD (
PatBind (LL $ BangPat pat) (unLoc $3)
PatBind (LL $ BangPat pat) (unLoc $3)
placeHolderType placeHolderNames)) } }
placeHolderType placeHolderNames)) } }
...
@@ -1245,11 +1245,10 @@ infixexp :: { LHsExpr RdrName }
...
@@ -1245,11 +1245,10 @@ infixexp :: { LHsExpr RdrName }
|
infixexp
qop
exp10
{
LL
(
OpApp
$1
$2
(
panic
"fixity"
)
$3
)
}
|
infixexp
qop
exp10
{
LL
(
OpApp
$1
$2
(
panic
"fixity"
)
$3
)
}
exp10
::
{
LHsExpr
RdrName
}
exp10
::
{
LHsExpr
RdrName
}
:
'\\'
aexp
aexps
opt_asig
'->'
exp
:
'\\'
apat
apats
opt_asig
'->'
exp
{
%
checkPatterns
(
$2
:
reverse
$3
)
>>=
\
ps
->
{
LL
$
HsLam
(
mkMatchGroup
[
LL
$
Match
(
$2
:
$3
)
$4
return
(
LL
$
HsLam
(
mkMatchGroup
[
LL
$
Match
ps
$4
(
unguardedGRHSs
$6
)
(
unguardedGRHSs
$6
)
])
}
]))
}
|
'let'
binds
'in'
exp
{
LL
$
HsLet
(
unLoc
$2
)
$4
}
|
'let'
binds
'in'
exp
{
LL
$
HsLet
(
unLoc
$2
)
$4
}
|
'if'
exp
'then'
exp
'else'
exp
{
LL
$
HsIf
$2
$4
$6
}
|
'if'
exp
'then'
exp
'else'
exp
{
LL
$
HsIf
$2
$4
$6
}
|
'case'
exp
'of'
altslist
{
LL
$
HsCase
$2
(
mkMatchGroup
(
unLoc
$4
))
}
|
'case'
exp
'of'
altslist
{
LL
$
HsCase
$2
(
mkMatchGroup
(
unLoc
$4
))
}
...
@@ -1283,14 +1282,9 @@ fexp :: { LHsExpr RdrName }
...
@@ -1283,14 +1282,9 @@ fexp :: { LHsExpr RdrName }
:
fexp
aexp
{
LL
$
HsApp
$1
$2
}
:
fexp
aexp
{
LL
$
HsApp
$1
$2
}
|
aexp
{
$1
}
|
aexp
{
$1
}
aexps
::
{
[
LHsExpr
RdrName
]
}
:
aexps
aexp
{
$2
:
$1
}
|
{
-
empty
-
}
{
[]
}
aexp
::
{
LHsExpr
RdrName
}
aexp
::
{
LHsExpr
RdrName
}
:
qvar
'@'
aexp
{
LL
$
EAsPat
$1
$3
}
:
qvar
'@'
aexp
{
LL
$
EAsPat
$1
$3
}
|
'~'
aexp
{
LL
$
ELazyPat
$2
}
|
'~'
aexp
{
LL
$
ELazyPat
$2
}
--
|
'!'
aexp
{
LL
$
EBangPat
$2
}
|
aexp1
{
$1
}
|
aexp1
{
$1
}
aexp1
::
{
LHsExpr
RdrName
}
aexp1
::
{
LHsExpr
RdrName
}
...
@@ -1443,10 +1437,7 @@ alts1 :: { Located [LMatch RdrName] }
...
@@ -1443,10 +1437,7 @@ alts1 :: { Located [LMatch RdrName] }
|
alt
{
L1
[
$1
]
}
|
alt
{
L1
[
$1
]
}
alt
::
{
LMatch
RdrName
}
alt
::
{
LMatch
RdrName
}
:
infixexp
opt_sig
alt_rhs
{
%
checkPattern
$1
>>=
\
p
->
:
pat
opt_sig
alt_rhs
{
LL
(
Match
[
$1
]
$2
(
unLoc
$3
))
}
return
(
LL
(
Match
[
p
]
$2
(
unLoc
$3
)))
}
|
'!'
infixexp
opt_sig
alt_rhs
{
%
checkPattern
$2
>>=
\
p
->
return
(
LL
(
Match
[
LL
$
BangPat
p
]
$3
(
unLoc
$4
)))
}
alt_rhs
::
{
Located
(
GRHSs
RdrName
)
}
alt_rhs
::
{
Located
(
GRHSs
RdrName
)
}
:
ralt
wherebinds
{
LL
(
GRHSs
(
unLoc
$1
)
(
unLoc
$2
))
}
:
ralt
wherebinds
{
LL
(
GRHSs
(
unLoc
$1
)
(
unLoc
$2
))
}
...
@@ -1462,6 +1453,22 @@ gdpats :: { Located [LGRHS RdrName] }
...
@@ -1462,6 +1453,22 @@ gdpats :: { Located [LGRHS RdrName] }
gdpat
::
{
LGRHS
RdrName
}
gdpat
::
{
LGRHS
RdrName
}
:
'|'
quals
'->'
exp
{
sL
(
comb2
$1
$
>
)
$
GRHS
(
reverse
(
unLoc
$2
))
$4
}
:
'|'
quals
'->'
exp
{
sL
(
comb2
$1
$
>
)
$
GRHS
(
reverse
(
unLoc
$2
))
$4
}
--
'pat'
recognises
a
pattern
,
including
one
with
a
bang
at
the
top
--
e
.
g
.
"!x"
or
"!(x,y)"
or
"C a b"
etc
--
Bangs
inside
are
parsed
as
infix
operator
applications
,
so
that
--
we
parse
them
right
when
bang
-
patterns
are
off
pat
::
{
LPat
RdrName
}
pat
:
infixexp
{
%
checkPattern
$1
}
|
'!'
aexp
{
%
checkPattern
(
LL
(
SectionR
(
L1
(
HsVar
bang_RDR
))
$2
))
}
apat
::
{
LPat
RdrName
}
apat
:
aexp
{
%
checkPattern
$1
}
|
'!'
aexp
{
%
checkPattern
(
LL
(
SectionR
(
L1
(
HsVar
bang_RDR
))
$2
))
}
apats
::
{
[
LPat
RdrName
]
}
:
apat
apats
{
$1
:
$2
}
|
{
-
empty
-
}
{
[]
}
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
--
Statement
sequences
--
Statement
sequences
...
@@ -1491,13 +1498,13 @@ maybe_stmt :: { Maybe (LStmt RdrName) }
...
@@ -1491,13 +1498,13 @@ maybe_stmt :: { Maybe (LStmt RdrName) }
stmt :: { LStmt RdrName }
stmt :: { LStmt RdrName }
: qual { $1 }
: qual { $1 }
-- What is this next production doing? I have no clue! SLPJ Dec06
| infixexp '
->
' exp {% checkPattern $3 >>= \p ->
| infixexp '
->
' exp {% checkPattern $3 >>= \p ->
return (LL $ mkBindStmt p $1) }
return (LL $ mkBindStmt p $1) }
| '
rec
' stmtlist { LL $ mkRecStmt (unLoc $2) }
| '
rec
' stmtlist { LL $ mkRecStmt (unLoc $2) }
qual :: { LStmt RdrName }
qual :: { LStmt RdrName }
: exp '
<-
' exp {% checkPattern $1 >>= \p ->
: pat '
<-
' exp { LL $ mkBindStmt $1 $3 }
return (LL $ mkBindStmt p $3) }
| exp { L1 $ mkExprStmt $1 }
| exp { L1 $ mkExprStmt $1 }
| '
let
' binds { LL $ LetStmt (unLoc $2) }
| '
let
' binds { LL $ LetStmt (unLoc $2) }
...
@@ -1817,7 +1824,7 @@ moduleheader :: { (HaddockModInfo RdrName, Maybe (HsDoc RdrName)) }
...
@@ -1817,7 +1824,7 @@ moduleheader :: { (HaddockModInfo RdrName, Maybe (HsDoc RdrName)) }
Left err -> parseError (getLoc $1) err;
Left err -> parseError (getLoc $1) err;
Right doc -> return (info, Just doc);
Right doc -> return (info, Just doc);
};
};
Left err -> parseError (getLoc $1) err
Left err -> parseError (getLoc $1) err
} }
} }
maybe_docprev :: { Maybe (LHsDoc RdrName) }
maybe_docprev :: { Maybe (LHsDoc RdrName) }
...
...
compiler/parser/RdrHsSyn.lhs
View file @
e343a6ca
...
@@ -42,6 +42,7 @@ module RdrHsSyn (
...
@@ -42,6 +42,7 @@ module RdrHsSyn (
checkInstType, -- HsType -> P HsType
checkInstType, -- HsType -> P HsType
checkDerivDecl, -- LDerivDecl RdrName -> P (LDerivDecl RdrName)
checkDerivDecl, -- LDerivDecl RdrName -> P (LDerivDecl RdrName)
checkPattern, -- HsExp -> P HsPat
checkPattern, -- HsExp -> P HsPat
bang_RDR,
checkPatterns, -- SrcLoc -> [HsExp] -> P [HsPat]
checkPatterns, -- SrcLoc -> [HsExp] -> P [HsPat]
checkDo, -- [Stmt] -> P [Stmt]
checkDo, -- [Stmt] -> P [Stmt]
checkMDo, -- [Stmt] -> P [Stmt]
checkMDo, -- [Stmt] -> P [Stmt]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment