Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurisu.Ti.Na committed Sep 26, 2016
1 parent a27166d commit 62e1fb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/LetRecLang/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ procExpr = do
body <- expression
return $ ProcExpr params body

-- | CallExpr ::= (Expression {Expression}*)
callExpr :: Parser Expression
callExpr = parens $ do
rator <- expression
Expand Down
1 change: 1 addition & 0 deletions src/ProcLang/Parser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ procExpr = do
body <- expression
return $ ProcExpr params body

-- | CallExpr ::= (Expression {Expression}*)
callExpr :: Parser Expression
callExpr = parens $ do
rator <- expression
Expand Down

0 comments on commit 62e1fb8

Please sign in to comment.